diff --git a/grammar.js b/grammar.js index 6af8810b7..102637afb 100644 --- a/grammar.js +++ b/grammar.js @@ -57,7 +57,7 @@ module.exports = grammar({ import_declaration: $ => seq( 'import', - $.stable_identifier, + choice($.stable_identifier, $.identifier), optional(seq( '.', choice( @@ -126,6 +126,7 @@ module.exports = grammar({ ), val_definition: $ => seq( + optional($.modifiers), 'val', $._pattern, optional(seq(':', $._type)), @@ -134,6 +135,7 @@ module.exports = grammar({ ), val_declaration: $ => seq( + optional($.modifiers), 'val', commaSep1($.identifier), ':', @@ -141,6 +143,7 @@ module.exports = grammar({ ), var_declaration: $ => seq( + optional($.modifiers), 'var', commaSep1($.identifier), ':', @@ -148,6 +151,7 @@ module.exports = grammar({ ), var_definition: $ => seq( + optional($.modifiers), 'var', $._pattern, optional(seq(':', $._type)), @@ -156,6 +160,7 @@ module.exports = grammar({ ), type_definition: $ => seq( + optional($.modifiers), 'type', $._type_identifier, optional($.type_parameters), @@ -356,6 +361,7 @@ module.exports = grammar({ $.infix_expression, $.prefix_expression, $.tuple_expression, + $.case_block, $.block, $.identifier, $.number, @@ -378,10 +384,9 @@ module.exports = grammar({ $.case_block ), - case_block: $ => seq( - '{', - repeat($.case_clause), - '}' + case_block: $ => choice( + prec(-1, seq('{', '}')), + seq('{', repeat1($.case_clause), '}') ), case_clause: $ => seq( @@ -410,7 +415,8 @@ module.exports = grammar({ call_expression: $ => prec(PREC.call, seq( $._expression, - $.arguments + $.arguments, + optional(choice($.block, $.case_block)) )), field_expression: $ => prec(PREC.field, seq( diff --git a/src/grammar.json b/src/grammar.json index e6d402a84..7e6b75101 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -82,8 +82,17 @@ "value": "import" }, { - "type": "SYMBOL", - "name": "stable_identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stable_identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] }, { "type": "CHOICE", @@ -428,6 +437,18 @@ "val_definition": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "val" @@ -470,6 +491,18 @@ "val_declaration": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "val" @@ -512,6 +545,18 @@ "var_declaration": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "var" @@ -554,6 +599,18 @@ "var_definition": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "var" @@ -596,6 +653,18 @@ "type_definition": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "type" @@ -1606,6 +1675,10 @@ "type": "SYMBOL", "name": "tuple_expression" }, + { + "type": "SYMBOL", + "name": "case_block" + }, { "type": "SYMBOL", "name": "block" @@ -1684,22 +1757,44 @@ ] }, "case_block": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", + "type": "PREC", + "value": -1, "content": { - "type": "SYMBOL", - "name": "case_clause" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "}" + } + ] } }, { - "type": "STRING", - "value": "}" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "case_clause" + } + }, + { + "type": "STRING", + "value": "}" + } + ] } ] }, @@ -1800,6 +1895,27 @@ { "type": "SYMBOL", "name": "arguments" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block" + }, + { + "type": "SYMBOL", + "name": "case_block" + } + ] + }, + { + "type": "BLANK" + } + ] } ] } diff --git a/src/parser.c b/src/parser.c index 5d441febe..c8954f4cb 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,12 +6,12 @@ #endif #define LANGUAGE_VERSION 5 -#define STATE_COUNT 1682 +#define STATE_COUNT 1796 #define SYMBOL_COUNT 129 #define ALIAS_COUNT 1 #define TOKEN_COUNT 56 #define EXTERNAL_TOKEN_COUNT 7 -#define MAX_ALIAS_SEQUENCE_LENGTH 5 +#define MAX_ALIAS_SEQUENCE_LENGTH 6 enum { sym__simple_string = 1, @@ -3367,6 +3367,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(247); END_STATE(); case 267: + if (lookahead == '(') + ADVANCE(3); + if (lookahead == '/') + ADVANCE(8); + if (lookahead == '_') + ADVANCE(19); + if (lookahead == 'c') + ADVANCE(268); + if (lookahead == 'o') + ADVANCE(269); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(267); + if (('0' <= lookahead && lookahead <= '9')) + ADVANCE(131); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + END_STATE(); + case 268: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') + ADVANCE(33); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + END_STATE(); + case 269: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'b') + ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + END_STATE(); + case 270: if (lookahead == '(') ADVANCE(3); if (lookahead == ')') @@ -3387,7 +3429,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(267); + SKIP(270); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -3401,7 +3443,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 268: + case 271: if (lookahead == '!') ADVANCE(237); if (lookahead == '(') @@ -3426,7 +3468,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(268); + SKIP(271); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); if (('A' <= lookahead && lookahead <= 'Z') || @@ -3434,7 +3476,102 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(20); END_STATE(); - case 269: + case 272: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '(') + ADVANCE(3); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == '=') + ADVANCE(254); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'a') + ADVANCE(21); + if (lookahead == 'c') + ADVANCE(29); + if (lookahead == 'd') + ADVANCE(37); + if (lookahead == 'f') + ADVANCE(44); + if (lookahead == 'i') + ADVANCE(249); + if (lookahead == 'l') + ADVANCE(61); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == 'o') + ADVANCE(73); + if (lookahead == 'p') + ADVANCE(86); + if (lookahead == 's') + ADVANCE(106); + if (lookahead == 't') + ADVANCE(112); + if (lookahead == 'v') + ADVANCE(120); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(272); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + lookahead != ',' && + (lookahead < '.' || lookahead > '9') && + lookahead != ';' && + lookahead != ']' && + (lookahead < '_' || lookahead > '{')) + ADVANCE(247); + END_STATE(); + case 273: + if (lookahead == '\n') + ADVANCE(260); + if (lookahead == '(') + ADVANCE(3); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == ';') + ADVANCE(14); + if (lookahead == '=') + ADVANCE(254); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '}') + ADVANCE(261); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(273); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != 0 && + lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + lookahead != ',' && + (lookahead < '.' || lookahead > '9') && + lookahead != ']' && + (lookahead < '_' || lookahead > '{')) + ADVANCE(247); + END_STATE(); + case 274: if (lookahead == ')') ADVANCE(4); if (lookahead == ',') @@ -3453,7 +3590,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(269); + SKIP(274); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -3467,7 +3604,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 270: + case 275: + if (lookahead == '(') + ADVANCE(3); + if (lookahead == ')') + ADVANCE(4); + if (lookahead == ',') + ADVANCE(6); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == '=') + ADVANCE(254); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(275); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != 0 && + lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + (lookahead < '.' || lookahead > '9') && + lookahead != ';' && + lookahead != ']' && + (lookahead < '_' || lookahead > '{')) + ADVANCE(247); + END_STATE(); + case 276: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -3510,7 +3684,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(270); + SKIP(276); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) @@ -3524,7 +3698,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 271: + case 277: if (lookahead == '\n') ADVANCE(260); if (lookahead == '(') @@ -3548,7 +3722,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(271); + SKIP(277); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -3562,7 +3736,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 272: + case 278: if (lookahead == '.') ADVANCE(7); if (lookahead == '/') @@ -3601,7 +3775,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(272); + SKIP(278); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) @@ -3616,7 +3790,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > '{')) ADVANCE(247); END_STATE(); - case 273: + case 279: if (lookahead == '.') ADVANCE(7); if (lookahead == '/') @@ -3659,7 +3833,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(273); + SKIP(279); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) @@ -3673,7 +3847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 274: + case 280: if (lookahead == '(') ADVANCE(3); if (lookahead == '.') @@ -3714,7 +3888,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(274); + SKIP(280); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) @@ -3729,7 +3903,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 275: + case 281: if (lookahead == '.') ADVANCE(7); if (lookahead == '/') @@ -3766,7 +3940,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(275); + SKIP(281); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) @@ -3781,7 +3955,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 276: + case 282: if (lookahead == '.') ADVANCE(7); if (lookahead == '/') @@ -3822,7 +3996,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(276); + SKIP(282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) @@ -3837,7 +4011,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > '{')) ADVANCE(247); END_STATE(); - case 277: + case 283: if (lookahead == '(') ADVANCE(3); if (lookahead == ')') @@ -3860,7 +4034,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(277); + SKIP(283); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -3874,27 +4048,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 278: - if (lookahead == '\n') - ADVANCE(260); + case 284: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '(') + ADVANCE(3); if (lookahead == '.') ADVANCE(7); if (lookahead == '/') ADVANCE(244); - if (lookahead == ';') - ADVANCE(14); + if (lookahead == '=') + ADVANCE(254); if (lookahead == '[') ADVANCE(17); - if (lookahead == 'w') - ADVANCE(124); + if (lookahead == 'a') + ADVANCE(21); + if (lookahead == 'c') + ADVANCE(29); + if (lookahead == 'd') + ADVANCE(37); + if (lookahead == 'e') + ADVANCE(40); + if (lookahead == 'f') + ADVANCE(44); + if (lookahead == 'i') + ADVANCE(249); + if (lookahead == 'l') + ADVANCE(61); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == 'o') + ADVANCE(73); + if (lookahead == 'p') + ADVANCE(86); + if (lookahead == 's') + ADVANCE(106); + if (lookahead == 't') + ADVANCE(112); + if (lookahead == 'v') + ADVANCE(120); if (lookahead == '{') ADVANCE(250); - if (lookahead == '}') - ADVANCE(261); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(278); + SKIP(284); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + lookahead != ',' && + (lookahead < '.' || lookahead > '9') && + lookahead != ';' && + lookahead != ']' && + (lookahead < '_' || lookahead > '{')) + ADVANCE(247); + END_STATE(); + case 285: + if (lookahead == '\n') + ADVANCE(260); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == ';') + ADVANCE(14); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'w') + ADVANCE(124); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '}') + ADVANCE(261); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(285); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -3908,7 +4141,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > '{')) ADVANCE(247); END_STATE(); - case 279: + case 286: if (lookahead == '\n') ADVANCE(260); if (lookahead == '.') @@ -3932,7 +4165,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(279); + SKIP(286); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -3946,7 +4179,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 280: + case 287: if (lookahead == '\n') ADVANCE(260); if (lookahead == '.') @@ -3964,7 +4197,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(280); + SKIP(287); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -3978,7 +4211,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 281: + case 288: if (lookahead == '\n') ADVANCE(260); if (lookahead == '.') @@ -4000,7 +4233,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(281); + SKIP(288); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -4014,7 +4247,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > '{')) ADVANCE(247); END_STATE(); - case 282: + case 289: + if (lookahead == '\n') + ADVANCE(260); + if (lookahead == '(') + ADVANCE(3); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == ';') + ADVANCE(14); + if (lookahead == '=') + ADVANCE(254); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'e') + ADVANCE(40); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '}') + ADVANCE(261); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(289); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != 0 && + lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + lookahead != ',' && + (lookahead < '.' || lookahead > '9') && + lookahead != ']' && + (lookahead < '_' || lookahead > '{')) + ADVANCE(247); + END_STATE(); + case 290: if (lookahead == '!') ADVANCE(237); if (lookahead == '(') @@ -4057,7 +4330,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(282); + SKIP(290); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); if (('A' <= lookahead && lookahead <= 'Z') || @@ -4065,7 +4338,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('b' <= lookahead && lookahead <= 'z')) ADVANCE(20); END_STATE(); - case 283: + case 291: if (lookahead == '(') ADVANCE(3); if (lookahead == '.') @@ -4082,8 +4355,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(29); if (lookahead == 'd') ADVANCE(37); - if (lookahead == 'e') - ADVANCE(40); if (lookahead == 'f') ADVANCE(44); if (lookahead == 'i') @@ -4102,13 +4373,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(112); if (lookahead == 'v') ADVANCE(120); + if (lookahead == '{') + ADVANCE(250); if (lookahead == '}') ADVANCE(261); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(283); + SKIP(291); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) @@ -4120,10 +4393,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '.' || lookahead > '9') && lookahead != ';' && lookahead != ']' && - (lookahead < '_' || lookahead > 'z')) + (lookahead < '_' || lookahead > '{')) ADVANCE(247); END_STATE(); - case 284: + case 292: if (lookahead == '(') ADVANCE(3); if (lookahead == '.') @@ -4135,7 +4408,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(17); if (lookahead == 'c') - ADVANCE(285); + ADVANCE(293); if (lookahead == 'm') ADVANCE(65); if (lookahead == '}') @@ -4144,7 +4417,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(284); + SKIP(292); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -4159,7 +4432,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 285: + case 293: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') ADVANCE(30); @@ -4169,7 +4442,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('b' <= lookahead && lookahead <= 'z')) ADVANCE(20); END_STATE(); - case 286: + case 294: if (lookahead == '.') ADVANCE(7); if (lookahead == '/') @@ -4177,7 +4450,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(253); if (lookahead == '=') - ADVANCE(287); + ADVANCE(295); if (lookahead == '[') ADVANCE(17); if (lookahead == 'i') @@ -4190,7 +4463,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(286); + SKIP(294); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -4204,10 +4477,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 287: + case 295: ACCEPT_TOKEN(sym_operator_identifier); if (lookahead == '>') - ADVANCE(288); + ADVANCE(296); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4224,7 +4497,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 288: + case 296: ACCEPT_TOKEN(anon_sym_EQ_GT); if (lookahead != 0 && lookahead != '\t' && @@ -4242,7 +4515,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 289: + case 297: if (lookahead == '(') ADVANCE(3); if (lookahead == '.') @@ -4250,7 +4523,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(244); if (lookahead == '=') - ADVANCE(290); + ADVANCE(298); if (lookahead == '[') ADVANCE(17); if (lookahead == 'm') @@ -4259,7 +4532,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(289); + SKIP(297); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -4274,10 +4547,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 290: + case 298: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '>') - ADVANCE(288); + ADVANCE(296); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4294,7 +4567,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 291: + case 299: + if (lookahead == '(') + ADVANCE(3); + if (lookahead == ')') + ADVANCE(4); + if (lookahead == ',') + ADVANCE(6); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == '=') + ADVANCE(254); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'e') + ADVANCE(40); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(299); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != 0 && + lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + (lookahead < '.' || lookahead > '9') && + lookahead != ';' && + lookahead != ']' && + (lookahead < '_' || lookahead > '{')) + ADVANCE(247); + END_STATE(); + case 300: if (lookahead == '(') ADVANCE(3); if (lookahead == '.') @@ -4305,22 +4617,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(254); if (lookahead == '[') ADVANCE(17); + if (lookahead == 'a') + ADVANCE(21); if (lookahead == 'c') - ADVANCE(285); + ADVANCE(29); + if (lookahead == 'd') + ADVANCE(37); if (lookahead == 'e') ADVANCE(40); + if (lookahead == 'f') + ADVANCE(44); + if (lookahead == 'i') + ADVANCE(249); + if (lookahead == 'l') + ADVANCE(61); if (lookahead == 'm') ADVANCE(65); + if (lookahead == 'o') + ADVANCE(73); + if (lookahead == 'p') + ADVANCE(86); + if (lookahead == 's') + ADVANCE(106); + if (lookahead == 't') + ADVANCE(112); + if (lookahead == 'v') + ADVANCE(120); if (lookahead == '}') ADVANCE(261); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(291); + SKIP(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(20); if (lookahead != 0 && lookahead != '\"' && @@ -4332,7 +4664,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(247); END_STATE(); - case 292: + case 301: if (lookahead == '(') ADVANCE(3); if (lookahead == '.') @@ -4340,18 +4672,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(244); if (lookahead == '=') - ADVANCE(290); + ADVANCE(254); if (lookahead == '[') ADVANCE(17); - if (lookahead == 'e') - ADVANCE(40); + if (lookahead == 'c') + ADVANCE(293); if (lookahead == 'm') ADVANCE(65); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '}') + ADVANCE(261); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(292); + SKIP(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) @@ -4363,1697 +4699,2053 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '.' || lookahead > '9') && lookahead != ';' && lookahead != ']' && - (lookahead < '_' || lookahead > 'z')) + (lookahead < '_' || lookahead > '{')) ADVANCE(247); END_STATE(); - default: - return false; - } -} - -static TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 0}, - [2] = {.lex_state = 132}, - [3] = {.lex_state = 132}, - [4] = {.lex_state = 0}, - [5] = {.lex_state = 132}, - [6] = {.lex_state = 132}, - [7] = {.lex_state = 132}, - [8] = {.lex_state = 133, .external_lex_state = 2}, - [9] = {.lex_state = 133, .external_lex_state = 2}, - [10] = {.lex_state = 132}, - [11] = {.lex_state = 132}, - [12] = {.lex_state = 0}, - [13] = {.lex_state = 0}, - [14] = {.lex_state = 0}, - [15] = {.lex_state = 0}, - [16] = {.lex_state = 0}, - [17] = {.lex_state = 0}, - [18] = {.lex_state = 0}, - [19] = {.lex_state = 132}, - [20] = {.lex_state = 134}, - [21] = {.lex_state = 132}, - [22] = {.lex_state = 132}, - [23] = {.lex_state = 0}, - [24] = {.lex_state = 134}, - [25] = {.lex_state = 134}, - [26] = {.lex_state = 134}, - [27] = {.lex_state = 134}, - [28] = {.lex_state = 134}, - [29] = {.lex_state = 134}, - [30] = {.lex_state = 133, .external_lex_state = 2}, - [31] = {.lex_state = 132}, - [32] = {.lex_state = 132}, - [33] = {.lex_state = 0}, - [34] = {.lex_state = 132}, - [35] = {.lex_state = 132}, - [36] = {.lex_state = 132}, - [37] = {.lex_state = 132}, - [38] = {.lex_state = 134}, - [39] = {.lex_state = 0}, - [40] = {.lex_state = 132}, - [41] = {.lex_state = 0}, - [42] = {.lex_state = 0}, - [43] = {.lex_state = 132}, - [44] = {.lex_state = 233}, - [45] = {.lex_state = 0}, - [46] = {.lex_state = 134}, - [47] = {.lex_state = 0}, - [48] = {.lex_state = 0}, - [49] = {.lex_state = 133}, - [50] = {.lex_state = 132}, - [51] = {.lex_state = 234}, - [52] = {.lex_state = 134}, - [53] = {.lex_state = 0}, - [54] = {.lex_state = 0}, - [55] = {.lex_state = 134}, - [56] = {.lex_state = 132}, - [57] = {.lex_state = 134}, - [58] = {.lex_state = 0}, - [59] = {.lex_state = 0}, - [60] = {.lex_state = 132}, - [61] = {.lex_state = 235, .external_lex_state = 3}, - [62] = {.lex_state = 132}, - [63] = {.lex_state = 235, .external_lex_state = 4}, - [64] = {.lex_state = 132}, - [65] = {.lex_state = 132}, - [66] = {.lex_state = 132}, - [67] = {.lex_state = 132}, - [68] = {.lex_state = 132}, - [69] = {.lex_state = 236, .external_lex_state = 2}, - [70] = {.lex_state = 241, .external_lex_state = 2}, - [71] = {.lex_state = 133, .external_lex_state = 2}, - [72] = {.lex_state = 132}, - [73] = {.lex_state = 132}, - [74] = {.lex_state = 241, .external_lex_state = 2}, - [75] = {.lex_state = 132}, - [76] = {.lex_state = 236, .external_lex_state = 2}, - [77] = {.lex_state = 132}, - [78] = {.lex_state = 132}, - [79] = {.lex_state = 132}, - [80] = {.lex_state = 132}, - [81] = {.lex_state = 242, .external_lex_state = 2}, - [82] = {.lex_state = 132}, - [83] = {.lex_state = 236, .external_lex_state = 2}, - [84] = {.lex_state = 132}, - [85] = {.lex_state = 134}, - [86] = {.lex_state = 134}, - [87] = {.lex_state = 0}, - [88] = {.lex_state = 132}, - [89] = {.lex_state = 134}, - [90] = {.lex_state = 134}, - [91] = {.lex_state = 132}, - [92] = {.lex_state = 0}, - [93] = {.lex_state = 0}, - [94] = {.lex_state = 134}, - [95] = {.lex_state = 0}, - [96] = {.lex_state = 0}, - [97] = {.lex_state = 134}, - [98] = {.lex_state = 0}, - [99] = {.lex_state = 0}, - [100] = {.lex_state = 132}, - [101] = {.lex_state = 133, .external_lex_state = 2}, - [102] = {.lex_state = 133, .external_lex_state = 2}, - [103] = {.lex_state = 132}, - [104] = {.lex_state = 132}, - [105] = {.lex_state = 0}, - [106] = {.lex_state = 0}, - [107] = {.lex_state = 132}, - [108] = {.lex_state = 132}, - [109] = {.lex_state = 132}, - [110] = {.lex_state = 243}, - [111] = {.lex_state = 243}, - [112] = {.lex_state = 243}, - [113] = {.lex_state = 243}, - [114] = {.lex_state = 132}, - [115] = {.lex_state = 132}, - [116] = {.lex_state = 132}, - [117] = {.lex_state = 134}, - [118] = {.lex_state = 132}, - [119] = {.lex_state = 132}, - [120] = {.lex_state = 251}, - [121] = {.lex_state = 251}, - [122] = {.lex_state = 251}, - [123] = {.lex_state = 251}, - [124] = {.lex_state = 132}, - [125] = {.lex_state = 132}, - [126] = {.lex_state = 0}, - [127] = {.lex_state = 0}, - [128] = {.lex_state = 242, .external_lex_state = 2}, - [129] = {.lex_state = 235, .external_lex_state = 3}, - [130] = {.lex_state = 134}, - [131] = {.lex_state = 134}, - [132] = {.lex_state = 235, .external_lex_state = 3}, - [133] = {.lex_state = 242, .external_lex_state = 2}, - [134] = {.lex_state = 235, .external_lex_state = 4}, - [135] = {.lex_state = 134}, - [136] = {.lex_state = 235, .external_lex_state = 4}, - [137] = {.lex_state = 133, .external_lex_state = 2}, - [138] = {.lex_state = 132}, - [139] = {.lex_state = 134}, - [140] = {.lex_state = 132}, - [141] = {.lex_state = 132}, - [142] = {.lex_state = 132}, - [143] = {.lex_state = 252}, - [144] = {.lex_state = 252}, - [145] = {.lex_state = 252}, - [146] = {.lex_state = 252}, - [147] = {.lex_state = 132}, - [148] = {.lex_state = 132}, - [149] = {.lex_state = 256}, - [150] = {.lex_state = 134}, - [151] = {.lex_state = 134}, - [152] = {.lex_state = 242, .external_lex_state = 2}, - [153] = {.lex_state = 236, .external_lex_state = 2}, - [154] = {.lex_state = 0}, - [155] = {.lex_state = 236, .external_lex_state = 2}, - [156] = {.lex_state = 236, .external_lex_state = 2}, - [157] = {.lex_state = 256, .external_lex_state = 2}, - [158] = {.lex_state = 256}, - [159] = {.lex_state = 256}, - [160] = {.lex_state = 134}, - [161] = {.lex_state = 132}, - [162] = {.lex_state = 132}, - [163] = {.lex_state = 134}, - [164] = {.lex_state = 134}, - [165] = {.lex_state = 132}, - [166] = {.lex_state = 132}, - [167] = {.lex_state = 257}, - [168] = {.lex_state = 257}, - [169] = {.lex_state = 257}, - [170] = {.lex_state = 257}, - [171] = {.lex_state = 132}, - [172] = {.lex_state = 132}, - [173] = {.lex_state = 134}, - [174] = {.lex_state = 132}, - [175] = {.lex_state = 132}, - [176] = {.lex_state = 252}, - [177] = {.lex_state = 256}, - [178] = {.lex_state = 132}, - [179] = {.lex_state = 257}, - [180] = {.lex_state = 258}, - [181] = {.lex_state = 258}, - [182] = {.lex_state = 258}, - [183] = {.lex_state = 258}, - [184] = {.lex_state = 132}, - [185] = {.lex_state = 132}, - [186] = {.lex_state = 132}, - [187] = {.lex_state = 259}, - [188] = {.lex_state = 134}, - [189] = {.lex_state = 134}, - [190] = {.lex_state = 132}, - [191] = {.lex_state = 132}, - [192] = {.lex_state = 242, .external_lex_state = 2}, - [193] = {.lex_state = 0}, - [194] = {.lex_state = 0}, - [195] = {.lex_state = 132}, - [196] = {.lex_state = 132}, - [197] = {.lex_state = 132}, - [198] = {.lex_state = 133, .external_lex_state = 2}, - [199] = {.lex_state = 133, .external_lex_state = 2}, - [200] = {.lex_state = 132}, - [201] = {.lex_state = 132}, - [202] = {.lex_state = 236, .external_lex_state = 2}, - [203] = {.lex_state = 0}, - [204] = {.lex_state = 236, .external_lex_state = 2}, - [205] = {.lex_state = 236, .external_lex_state = 2}, - [206] = {.lex_state = 259, .external_lex_state = 2}, - [207] = {.lex_state = 259}, - [208] = {.lex_state = 262}, - [209] = {.lex_state = 0}, - [210] = {.lex_state = 259}, - [211] = {.lex_state = 264}, - [212] = {.lex_state = 264}, - [213] = {.lex_state = 264}, - [214] = {.lex_state = 264}, - [215] = {.lex_state = 132}, - [216] = {.lex_state = 132}, - [217] = {.lex_state = 256}, - [218] = {.lex_state = 134}, - [219] = {.lex_state = 132}, - [220] = {.lex_state = 132}, - [221] = {.lex_state = 132}, - [222] = {.lex_state = 236, .external_lex_state = 2}, - [223] = {.lex_state = 134}, - [224] = {.lex_state = 0}, - [225] = {.lex_state = 134}, - [226] = {.lex_state = 134}, - [227] = {.lex_state = 132}, - [228] = {.lex_state = 132}, - [229] = {.lex_state = 0}, - [230] = {.lex_state = 0}, - [231] = {.lex_state = 134}, + case 302: + if (lookahead == '(') + ADVANCE(3); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == '=') + ADVANCE(298); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(302); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != 0 && + lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + lookahead != ',' && + (lookahead < '.' || lookahead > '9') && + lookahead != ';' && + lookahead != ']' && + (lookahead < '_' || lookahead > '{')) + ADVANCE(247); + END_STATE(); + case 303: + if (lookahead == '(') + ADVANCE(3); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == '=') + ADVANCE(254); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'a') + ADVANCE(21); + if (lookahead == 'c') + ADVANCE(29); + if (lookahead == 'd') + ADVANCE(37); + if (lookahead == 'e') + ADVANCE(40); + if (lookahead == 'f') + ADVANCE(44); + if (lookahead == 'i') + ADVANCE(249); + if (lookahead == 'l') + ADVANCE(61); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == 'o') + ADVANCE(73); + if (lookahead == 'p') + ADVANCE(86); + if (lookahead == 's') + ADVANCE(106); + if (lookahead == 't') + ADVANCE(112); + if (lookahead == 'v') + ADVANCE(120); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '}') + ADVANCE(261); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(303); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != 0 && + lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + lookahead != ',' && + (lookahead < '.' || lookahead > '9') && + lookahead != ';' && + lookahead != ']' && + (lookahead < '_' || lookahead > '{')) + ADVANCE(247); + END_STATE(); + case 304: + if (lookahead == '(') + ADVANCE(3); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == '=') + ADVANCE(254); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'c') + ADVANCE(293); + if (lookahead == 'e') + ADVANCE(40); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == '}') + ADVANCE(261); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(304); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != 0 && + lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + lookahead != ',' && + (lookahead < '.' || lookahead > '9') && + lookahead != ';' && + lookahead != ']' && + (lookahead < '_' || lookahead > 'z')) + ADVANCE(247); + END_STATE(); + case 305: + if (lookahead == '(') + ADVANCE(3); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == '=') + ADVANCE(298); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'e') + ADVANCE(40); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(305); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != 0 && + lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + lookahead != ',' && + (lookahead < '.' || lookahead > '9') && + lookahead != ';' && + lookahead != ']' && + (lookahead < '_' || lookahead > 'z')) + ADVANCE(247); + END_STATE(); + case 306: + if (lookahead == '(') + ADVANCE(3); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == '=') + ADVANCE(254); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'c') + ADVANCE(293); + if (lookahead == 'e') + ADVANCE(40); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '}') + ADVANCE(261); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(306); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != 0 && + lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + lookahead != ',' && + (lookahead < '.' || lookahead > '9') && + lookahead != ';' && + lookahead != ']' && + (lookahead < '_' || lookahead > '{')) + ADVANCE(247); + END_STATE(); + case 307: + if (lookahead == '(') + ADVANCE(3); + if (lookahead == '.') + ADVANCE(7); + if (lookahead == '/') + ADVANCE(244); + if (lookahead == '=') + ADVANCE(298); + if (lookahead == '[') + ADVANCE(17); + if (lookahead == 'e') + ADVANCE(40); + if (lookahead == 'm') + ADVANCE(65); + if (lookahead == '{') + ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(307); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(20); + if (lookahead != 0 && + lookahead != '\"' && + (lookahead < '\'' || lookahead > ')') && + lookahead != ',' && + (lookahead < '.' || lookahead > '9') && + lookahead != ';' && + lookahead != ']' && + (lookahead < '_' || lookahead > '{')) + ADVANCE(247); + END_STATE(); + default: + return false; + } +} + +static TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 0}, + [2] = {.lex_state = 132}, + [3] = {.lex_state = 132}, + [4] = {.lex_state = 0}, + [5] = {.lex_state = 132}, + [6] = {.lex_state = 132}, + [7] = {.lex_state = 132}, + [8] = {.lex_state = 133, .external_lex_state = 2}, + [9] = {.lex_state = 133, .external_lex_state = 2}, + [10] = {.lex_state = 132}, + [11] = {.lex_state = 132}, + [12] = {.lex_state = 0}, + [13] = {.lex_state = 0}, + [14] = {.lex_state = 0}, + [15] = {.lex_state = 0}, + [16] = {.lex_state = 0}, + [17] = {.lex_state = 0}, + [18] = {.lex_state = 0}, + [19] = {.lex_state = 134}, + [20] = {.lex_state = 132}, + [21] = {.lex_state = 132}, + [22] = {.lex_state = 0}, + [23] = {.lex_state = 134}, + [24] = {.lex_state = 134}, + [25] = {.lex_state = 134}, + [26] = {.lex_state = 134}, + [27] = {.lex_state = 134}, + [28] = {.lex_state = 134}, + [29] = {.lex_state = 133, .external_lex_state = 2}, + [30] = {.lex_state = 132}, + [31] = {.lex_state = 132}, + [32] = {.lex_state = 0}, + [33] = {.lex_state = 132}, + [34] = {.lex_state = 132}, + [35] = {.lex_state = 132}, + [36] = {.lex_state = 132}, + [37] = {.lex_state = 134}, + [38] = {.lex_state = 0}, + [39] = {.lex_state = 133, .external_lex_state = 2}, + [40] = {.lex_state = 133, .external_lex_state = 2}, + [41] = {.lex_state = 132}, + [42] = {.lex_state = 132}, + [43] = {.lex_state = 0}, + [44] = {.lex_state = 0}, + [45] = {.lex_state = 233}, + [46] = {.lex_state = 0}, + [47] = {.lex_state = 134}, + [48] = {.lex_state = 0}, + [49] = {.lex_state = 0}, + [50] = {.lex_state = 133}, + [51] = {.lex_state = 132}, + [52] = {.lex_state = 234}, + [53] = {.lex_state = 134}, + [54] = {.lex_state = 0}, + [55] = {.lex_state = 0}, + [56] = {.lex_state = 134}, + [57] = {.lex_state = 132}, + [58] = {.lex_state = 134}, + [59] = {.lex_state = 0}, + [60] = {.lex_state = 0}, + [61] = {.lex_state = 132}, + [62] = {.lex_state = 235, .external_lex_state = 3}, + [63] = {.lex_state = 132}, + [64] = {.lex_state = 235, .external_lex_state = 4}, + [65] = {.lex_state = 132}, + [66] = {.lex_state = 132}, + [67] = {.lex_state = 132}, + [68] = {.lex_state = 132}, + [69] = {.lex_state = 132}, + [70] = {.lex_state = 236, .external_lex_state = 2}, + [71] = {.lex_state = 241, .external_lex_state = 2}, + [72] = {.lex_state = 133, .external_lex_state = 2}, + [73] = {.lex_state = 132}, + [74] = {.lex_state = 132}, + [75] = {.lex_state = 241, .external_lex_state = 2}, + [76] = {.lex_state = 132}, + [77] = {.lex_state = 236, .external_lex_state = 2}, + [78] = {.lex_state = 132}, + [79] = {.lex_state = 132}, + [80] = {.lex_state = 132}, + [81] = {.lex_state = 132}, + [82] = {.lex_state = 242, .external_lex_state = 2}, + [83] = {.lex_state = 132}, + [84] = {.lex_state = 236, .external_lex_state = 2}, + [85] = {.lex_state = 132}, + [86] = {.lex_state = 134}, + [87] = {.lex_state = 134}, + [88] = {.lex_state = 0}, + [89] = {.lex_state = 132}, + [90] = {.lex_state = 132}, + [91] = {.lex_state = 132}, + [92] = {.lex_state = 132}, + [93] = {.lex_state = 132}, + [94] = {.lex_state = 132}, + [95] = {.lex_state = 134}, + [96] = {.lex_state = 132}, + [97] = {.lex_state = 134}, + [98] = {.lex_state = 0}, + [99] = {.lex_state = 0}, + [100] = {.lex_state = 134}, + [101] = {.lex_state = 0}, + [102] = {.lex_state = 0}, + [103] = {.lex_state = 134}, + [104] = {.lex_state = 0}, + [105] = {.lex_state = 0}, + [106] = {.lex_state = 132}, + [107] = {.lex_state = 133, .external_lex_state = 2}, + [108] = {.lex_state = 133, .external_lex_state = 2}, + [109] = {.lex_state = 132}, + [110] = {.lex_state = 132}, + [111] = {.lex_state = 0}, + [112] = {.lex_state = 0}, + [113] = {.lex_state = 132}, + [114] = {.lex_state = 132}, + [115] = {.lex_state = 132}, + [116] = {.lex_state = 243}, + [117] = {.lex_state = 243}, + [118] = {.lex_state = 243}, + [119] = {.lex_state = 243}, + [120] = {.lex_state = 132}, + [121] = {.lex_state = 132}, + [122] = {.lex_state = 132}, + [123] = {.lex_state = 134}, + [124] = {.lex_state = 132}, + [125] = {.lex_state = 132}, + [126] = {.lex_state = 251}, + [127] = {.lex_state = 251}, + [128] = {.lex_state = 251}, + [129] = {.lex_state = 251}, + [130] = {.lex_state = 132}, + [131] = {.lex_state = 132}, + [132] = {.lex_state = 0}, + [133] = {.lex_state = 0}, + [134] = {.lex_state = 242, .external_lex_state = 2}, + [135] = {.lex_state = 235, .external_lex_state = 3}, + [136] = {.lex_state = 134}, + [137] = {.lex_state = 134}, + [138] = {.lex_state = 235, .external_lex_state = 3}, + [139] = {.lex_state = 242, .external_lex_state = 2}, + [140] = {.lex_state = 235, .external_lex_state = 4}, + [141] = {.lex_state = 134}, + [142] = {.lex_state = 235, .external_lex_state = 4}, + [143] = {.lex_state = 133, .external_lex_state = 2}, + [144] = {.lex_state = 132}, + [145] = {.lex_state = 134}, + [146] = {.lex_state = 132}, + [147] = {.lex_state = 132}, + [148] = {.lex_state = 132}, + [149] = {.lex_state = 252}, + [150] = {.lex_state = 252}, + [151] = {.lex_state = 252}, + [152] = {.lex_state = 252}, + [153] = {.lex_state = 132}, + [154] = {.lex_state = 132}, + [155] = {.lex_state = 256}, + [156] = {.lex_state = 134}, + [157] = {.lex_state = 134}, + [158] = {.lex_state = 242, .external_lex_state = 2}, + [159] = {.lex_state = 236, .external_lex_state = 2}, + [160] = {.lex_state = 0}, + [161] = {.lex_state = 236, .external_lex_state = 2}, + [162] = {.lex_state = 236, .external_lex_state = 2}, + [163] = {.lex_state = 256, .external_lex_state = 2}, + [164] = {.lex_state = 256}, + [165] = {.lex_state = 256}, + [166] = {.lex_state = 134}, + [167] = {.lex_state = 132}, + [168] = {.lex_state = 132}, + [169] = {.lex_state = 134}, + [170] = {.lex_state = 134}, + [171] = {.lex_state = 132}, + [172] = {.lex_state = 132}, + [173] = {.lex_state = 257}, + [174] = {.lex_state = 257}, + [175] = {.lex_state = 257}, + [176] = {.lex_state = 257}, + [177] = {.lex_state = 132}, + [178] = {.lex_state = 132}, + [179] = {.lex_state = 134}, + [180] = {.lex_state = 132}, + [181] = {.lex_state = 132}, + [182] = {.lex_state = 252}, + [183] = {.lex_state = 256}, + [184] = {.lex_state = 132}, + [185] = {.lex_state = 257}, + [186] = {.lex_state = 258}, + [187] = {.lex_state = 258}, + [188] = {.lex_state = 258}, + [189] = {.lex_state = 258}, + [190] = {.lex_state = 132}, + [191] = {.lex_state = 132}, + [192] = {.lex_state = 132}, + [193] = {.lex_state = 259}, + [194] = {.lex_state = 134}, + [195] = {.lex_state = 134}, + [196] = {.lex_state = 132}, + [197] = {.lex_state = 132}, + [198] = {.lex_state = 242, .external_lex_state = 2}, + [199] = {.lex_state = 0}, + [200] = {.lex_state = 0}, + [201] = {.lex_state = 132}, + [202] = {.lex_state = 132}, + [203] = {.lex_state = 132}, + [204] = {.lex_state = 133, .external_lex_state = 2}, + [205] = {.lex_state = 133, .external_lex_state = 2}, + [206] = {.lex_state = 132}, + [207] = {.lex_state = 132}, + [208] = {.lex_state = 236, .external_lex_state = 2}, + [209] = {.lex_state = 0}, + [210] = {.lex_state = 236, .external_lex_state = 2}, + [211] = {.lex_state = 236, .external_lex_state = 2}, + [212] = {.lex_state = 259, .external_lex_state = 2}, + [213] = {.lex_state = 259}, + [214] = {.lex_state = 262}, + [215] = {.lex_state = 0}, + [216] = {.lex_state = 259}, + [217] = {.lex_state = 264}, + [218] = {.lex_state = 264}, + [219] = {.lex_state = 264}, + [220] = {.lex_state = 264}, + [221] = {.lex_state = 132}, + [222] = {.lex_state = 132}, + [223] = {.lex_state = 256}, + [224] = {.lex_state = 134}, + [225] = {.lex_state = 132}, + [226] = {.lex_state = 132}, + [227] = {.lex_state = 132}, + [228] = {.lex_state = 236, .external_lex_state = 2}, + [229] = {.lex_state = 134}, + [230] = {.lex_state = 0}, + [231] = {.lex_state = 134}, [232] = {.lex_state = 132}, - [233] = {.lex_state = 134}, + [233] = {.lex_state = 236, .external_lex_state = 2}, [234] = {.lex_state = 132}, [235] = {.lex_state = 132}, [236] = {.lex_state = 132}, - [237] = {.lex_state = 132}, + [237] = {.lex_state = 236, .external_lex_state = 2}, [238] = {.lex_state = 132}, - [239] = {.lex_state = 134}, - [240] = {.lex_state = 0}, + [239] = {.lex_state = 132}, + [240] = {.lex_state = 132}, [241] = {.lex_state = 132}, - [242] = {.lex_state = 0}, - [243] = {.lex_state = 0}, - [244] = {.lex_state = 133}, - [245] = {.lex_state = 134}, - [246] = {.lex_state = 132}, - [247] = {.lex_state = 132}, - [248] = {.lex_state = 265}, - [249] = {.lex_state = 265}, - [250] = {.lex_state = 265}, - [251] = {.lex_state = 265}, + [242] = {.lex_state = 134}, + [243] = {.lex_state = 132}, + [244] = {.lex_state = 132}, + [245] = {.lex_state = 0}, + [246] = {.lex_state = 0}, + [247] = {.lex_state = 134}, + [248] = {.lex_state = 132}, + [249] = {.lex_state = 134}, + [250] = {.lex_state = 132}, + [251] = {.lex_state = 132}, [252] = {.lex_state = 132}, [253] = {.lex_state = 132}, [254] = {.lex_state = 132}, - [255] = {.lex_state = 132}, - [256] = {.lex_state = 243}, - [257] = {.lex_state = 132}, - [258] = {.lex_state = 132}, - [259] = {.lex_state = 243}, + [255] = {.lex_state = 134}, + [256] = {.lex_state = 0}, + [257] = {.lex_state = 133, .external_lex_state = 2}, + [258] = {.lex_state = 133, .external_lex_state = 2}, + [259] = {.lex_state = 132}, [260] = {.lex_state = 132}, - [261] = {.lex_state = 132}, - [262] = {.lex_state = 132}, - [263] = {.lex_state = 236, .external_lex_state = 2}, - [264] = {.lex_state = 234}, - [265] = {.lex_state = 134}, + [261] = {.lex_state = 0}, + [262] = {.lex_state = 0}, + [263] = {.lex_state = 133}, + [264] = {.lex_state = 134}, + [265] = {.lex_state = 132}, [266] = {.lex_state = 132}, - [267] = {.lex_state = 132}, - [268] = {.lex_state = 132}, - [269] = {.lex_state = 251}, - [270] = {.lex_state = 132}, + [267] = {.lex_state = 265}, + [268] = {.lex_state = 265}, + [269] = {.lex_state = 265}, + [270] = {.lex_state = 265}, [271] = {.lex_state = 132}, - [272] = {.lex_state = 251}, + [272] = {.lex_state = 132}, [273] = {.lex_state = 132}, - [274] = {.lex_state = 0}, - [275] = {.lex_state = 235, .external_lex_state = 3}, - [276] = {.lex_state = 262}, - [277] = {.lex_state = 259}, - [278] = {.lex_state = 235, .external_lex_state = 3}, - [279] = {.lex_state = 134}, - [280] = {.lex_state = 235, .external_lex_state = 3}, - [281] = {.lex_state = 235, .external_lex_state = 4}, - [282] = {.lex_state = 262}, - [283] = {.lex_state = 259}, - [284] = {.lex_state = 235, .external_lex_state = 4}, - [285] = {.lex_state = 235, .external_lex_state = 4}, + [274] = {.lex_state = 132}, + [275] = {.lex_state = 243}, + [276] = {.lex_state = 132}, + [277] = {.lex_state = 132}, + [278] = {.lex_state = 243}, + [279] = {.lex_state = 132}, + [280] = {.lex_state = 132}, + [281] = {.lex_state = 132}, + [282] = {.lex_state = 236, .external_lex_state = 2}, + [283] = {.lex_state = 234}, + [284] = {.lex_state = 134}, + [285] = {.lex_state = 132}, [286] = {.lex_state = 132}, [287] = {.lex_state = 132}, - [288] = {.lex_state = 266}, - [289] = {.lex_state = 266}, - [290] = {.lex_state = 266}, - [291] = {.lex_state = 266}, + [288] = {.lex_state = 251}, + [289] = {.lex_state = 132}, + [290] = {.lex_state = 132}, + [291] = {.lex_state = 251}, [292] = {.lex_state = 132}, - [293] = {.lex_state = 132}, - [294] = {.lex_state = 134}, - [295] = {.lex_state = 132}, - [296] = {.lex_state = 132}, - [297] = {.lex_state = 132}, - [298] = {.lex_state = 252}, - [299] = {.lex_state = 236, .external_lex_state = 2}, - [300] = {.lex_state = 132}, - [301] = {.lex_state = 132}, - [302] = {.lex_state = 252}, - [303] = {.lex_state = 132}, - [304] = {.lex_state = 235, .external_lex_state = 3}, - [305] = {.lex_state = 235, .external_lex_state = 4}, - [306] = {.lex_state = 256}, - [307] = {.lex_state = 262}, - [308] = {.lex_state = 259}, - [309] = {.lex_state = 267}, - [310] = {.lex_state = 134}, - [311] = {.lex_state = 134}, - [312] = {.lex_state = 242, .external_lex_state = 2}, - [313] = {.lex_state = 236, .external_lex_state = 2}, - [314] = {.lex_state = 0}, - [315] = {.lex_state = 236, .external_lex_state = 2}, - [316] = {.lex_state = 236, .external_lex_state = 2}, - [317] = {.lex_state = 267, .external_lex_state = 2}, - [318] = {.lex_state = 267}, - [319] = {.lex_state = 267}, - [320] = {.lex_state = 236, .external_lex_state = 2}, - [321] = {.lex_state = 236, .external_lex_state = 2}, - [322] = {.lex_state = 256}, - [323] = {.lex_state = 256}, - [324] = {.lex_state = 256}, - [325] = {.lex_state = 132}, - [326] = {.lex_state = 132}, - [327] = {.lex_state = 236, .external_lex_state = 2}, - [328] = {.lex_state = 268, .external_lex_state = 2}, + [293] = {.lex_state = 0}, + [294] = {.lex_state = 235, .external_lex_state = 3}, + [295] = {.lex_state = 262}, + [296] = {.lex_state = 259}, + [297] = {.lex_state = 235, .external_lex_state = 3}, + [298] = {.lex_state = 134}, + [299] = {.lex_state = 235, .external_lex_state = 3}, + [300] = {.lex_state = 235, .external_lex_state = 4}, + [301] = {.lex_state = 262}, + [302] = {.lex_state = 259}, + [303] = {.lex_state = 235, .external_lex_state = 4}, + [304] = {.lex_state = 235, .external_lex_state = 4}, + [305] = {.lex_state = 132}, + [306] = {.lex_state = 132}, + [307] = {.lex_state = 266}, + [308] = {.lex_state = 266}, + [309] = {.lex_state = 266}, + [310] = {.lex_state = 266}, + [311] = {.lex_state = 132}, + [312] = {.lex_state = 132}, + [313] = {.lex_state = 134}, + [314] = {.lex_state = 132}, + [315] = {.lex_state = 132}, + [316] = {.lex_state = 132}, + [317] = {.lex_state = 252}, + [318] = {.lex_state = 236, .external_lex_state = 2}, + [319] = {.lex_state = 132}, + [320] = {.lex_state = 132}, + [321] = {.lex_state = 252}, + [322] = {.lex_state = 132}, + [323] = {.lex_state = 235, .external_lex_state = 3}, + [324] = {.lex_state = 235, .external_lex_state = 4}, + [325] = {.lex_state = 256}, + [326] = {.lex_state = 267, .external_lex_state = 2}, + [327] = {.lex_state = 262}, + [328] = {.lex_state = 259}, [329] = {.lex_state = 0}, - [330] = {.lex_state = 236, .external_lex_state = 2}, - [331] = {.lex_state = 256}, - [332] = {.lex_state = 256}, + [330] = {.lex_state = 0}, + [331] = {.lex_state = 270}, + [332] = {.lex_state = 134}, [333] = {.lex_state = 134}, - [334] = {.lex_state = 132}, - [335] = {.lex_state = 132}, - [336] = {.lex_state = 258}, - [337] = {.lex_state = 132}, - [338] = {.lex_state = 132}, - [339] = {.lex_state = 257}, - [340] = {.lex_state = 132}, - [341] = {.lex_state = 132}, - [342] = {.lex_state = 257}, - [343] = {.lex_state = 132}, - [344] = {.lex_state = 134}, - [345] = {.lex_state = 132}, - [346] = {.lex_state = 236, .external_lex_state = 2}, - [347] = {.lex_state = 258}, + [334] = {.lex_state = 242, .external_lex_state = 2}, + [335] = {.lex_state = 236, .external_lex_state = 2}, + [336] = {.lex_state = 0}, + [337] = {.lex_state = 236, .external_lex_state = 2}, + [338] = {.lex_state = 236, .external_lex_state = 2}, + [339] = {.lex_state = 270, .external_lex_state = 2}, + [340] = {.lex_state = 270}, + [341] = {.lex_state = 270}, + [342] = {.lex_state = 236, .external_lex_state = 2}, + [343] = {.lex_state = 236, .external_lex_state = 2}, + [344] = {.lex_state = 256}, + [345] = {.lex_state = 256}, + [346] = {.lex_state = 256}, + [347] = {.lex_state = 132}, [348] = {.lex_state = 132}, - [349] = {.lex_state = 132}, - [350] = {.lex_state = 258}, - [351] = {.lex_state = 132}, - [352] = {.lex_state = 132}, - [353] = {.lex_state = 258}, - [354] = {.lex_state = 132}, - [355] = {.lex_state = 258}, - [356] = {.lex_state = 235, .external_lex_state = 3}, - [357] = {.lex_state = 235, .external_lex_state = 4}, - [358] = {.lex_state = 262}, + [349] = {.lex_state = 236, .external_lex_state = 2}, + [350] = {.lex_state = 271, .external_lex_state = 2}, + [351] = {.lex_state = 0}, + [352] = {.lex_state = 236, .external_lex_state = 2}, + [353] = {.lex_state = 256}, + [354] = {.lex_state = 272}, + [355] = {.lex_state = 134}, + [356] = {.lex_state = 132}, + [357] = {.lex_state = 132}, + [358] = {.lex_state = 258}, [359] = {.lex_state = 132}, - [360] = {.lex_state = 262}, - [361] = {.lex_state = 259}, - [362] = {.lex_state = 262}, - [363] = {.lex_state = 259}, - [364] = {.lex_state = 132}, + [360] = {.lex_state = 132}, + [361] = {.lex_state = 257}, + [362] = {.lex_state = 132}, + [363] = {.lex_state = 132}, + [364] = {.lex_state = 257}, [365] = {.lex_state = 132}, - [366] = {.lex_state = 0}, - [367] = {.lex_state = 262}, - [368] = {.lex_state = 134}, - [369] = {.lex_state = 132}, + [366] = {.lex_state = 134}, + [367] = {.lex_state = 132}, + [368] = {.lex_state = 236, .external_lex_state = 2}, + [369] = {.lex_state = 258}, [370] = {.lex_state = 132}, [371] = {.lex_state = 132}, - [372] = {.lex_state = 132}, + [372] = {.lex_state = 258}, [373] = {.lex_state = 132}, - [374] = {.lex_state = 262}, - [375] = {.lex_state = 267}, - [376] = {.lex_state = 236, .external_lex_state = 2}, - [377] = {.lex_state = 259}, - [378] = {.lex_state = 259}, - [379] = {.lex_state = 259}, - [380] = {.lex_state = 0}, - [381] = {.lex_state = 242, .external_lex_state = 2}, - [382] = {.lex_state = 262}, - [383] = {.lex_state = 0}, - [384] = {.lex_state = 132}, - [385] = {.lex_state = 132}, + [374] = {.lex_state = 132}, + [375] = {.lex_state = 258}, + [376] = {.lex_state = 132}, + [377] = {.lex_state = 258}, + [378] = {.lex_state = 235, .external_lex_state = 3}, + [379] = {.lex_state = 235, .external_lex_state = 4}, + [380] = {.lex_state = 262}, + [381] = {.lex_state = 262}, + [382] = {.lex_state = 259}, + [383] = {.lex_state = 262}, + [384] = {.lex_state = 259}, + [385] = {.lex_state = 0}, [386] = {.lex_state = 132}, - [387] = {.lex_state = 236, .external_lex_state = 2}, - [388] = {.lex_state = 268, .external_lex_state = 2}, - [389] = {.lex_state = 0}, - [390] = {.lex_state = 236, .external_lex_state = 2}, - [391] = {.lex_state = 259}, - [392] = {.lex_state = 259}, + [387] = {.lex_state = 132}, + [388] = {.lex_state = 0}, + [389] = {.lex_state = 262}, + [390] = {.lex_state = 134}, + [391] = {.lex_state = 132}, + [392] = {.lex_state = 132}, [393] = {.lex_state = 132}, [394] = {.lex_state = 132}, - [395] = {.lex_state = 264}, - [396] = {.lex_state = 236, .external_lex_state = 2}, - [397] = {.lex_state = 132}, - [398] = {.lex_state = 132}, - [399] = {.lex_state = 0}, - [400] = {.lex_state = 264}, - [401] = {.lex_state = 132}, - [402] = {.lex_state = 132}, - [403] = {.lex_state = 236, .external_lex_state = 2}, - [404] = {.lex_state = 132}, - [405] = {.lex_state = 134}, - [406] = {.lex_state = 132}, - [407] = {.lex_state = 264}, - [408] = {.lex_state = 256}, + [395] = {.lex_state = 132}, + [396] = {.lex_state = 262}, + [397] = {.lex_state = 270}, + [398] = {.lex_state = 236, .external_lex_state = 2}, + [399] = {.lex_state = 259}, + [400] = {.lex_state = 259}, + [401] = {.lex_state = 259}, + [402] = {.lex_state = 0}, + [403] = {.lex_state = 242, .external_lex_state = 2}, + [404] = {.lex_state = 262}, + [405] = {.lex_state = 0}, + [406] = {.lex_state = 133, .external_lex_state = 2}, + [407] = {.lex_state = 133, .external_lex_state = 2}, + [408] = {.lex_state = 132}, [409] = {.lex_state = 132}, - [410] = {.lex_state = 134}, - [411] = {.lex_state = 134}, - [412] = {.lex_state = 132}, - [413] = {.lex_state = 0}, - [414] = {.lex_state = 133}, - [415] = {.lex_state = 132}, - [416] = {.lex_state = 0}, - [417] = {.lex_state = 0}, - [418] = {.lex_state = 134}, + [410] = {.lex_state = 132}, + [411] = {.lex_state = 132}, + [412] = {.lex_state = 236, .external_lex_state = 2}, + [413] = {.lex_state = 271, .external_lex_state = 2}, + [414] = {.lex_state = 0}, + [415] = {.lex_state = 236, .external_lex_state = 2}, + [416] = {.lex_state = 259}, + [417] = {.lex_state = 273}, + [418] = {.lex_state = 132}, [419] = {.lex_state = 132}, - [420] = {.lex_state = 134}, - [421] = {.lex_state = 134}, + [420] = {.lex_state = 264}, + [421] = {.lex_state = 236, .external_lex_state = 2}, [422] = {.lex_state = 132}, - [423] = {.lex_state = 236, .external_lex_state = 2}, - [424] = {.lex_state = 132}, - [425] = {.lex_state = 132}, + [423] = {.lex_state = 132}, + [424] = {.lex_state = 0}, + [425] = {.lex_state = 264}, [426] = {.lex_state = 132}, - [427] = {.lex_state = 236, .external_lex_state = 2}, - [428] = {.lex_state = 132}, + [427] = {.lex_state = 132}, + [428] = {.lex_state = 236, .external_lex_state = 2}, [429] = {.lex_state = 132}, - [430] = {.lex_state = 132}, + [430] = {.lex_state = 134}, [431] = {.lex_state = 132}, - [432] = {.lex_state = 132}, - [433] = {.lex_state = 236, .external_lex_state = 2}, - [434] = {.lex_state = 134}, + [432] = {.lex_state = 264}, + [433] = {.lex_state = 256}, + [434] = {.lex_state = 132}, [435] = {.lex_state = 134}, - [436] = {.lex_state = 132}, - [437] = {.lex_state = 134}, + [436] = {.lex_state = 252}, + [437] = {.lex_state = 256}, [438] = {.lex_state = 132}, - [439] = {.lex_state = 134}, - [440] = {.lex_state = 132}, - [441] = {.lex_state = 132}, + [439] = {.lex_state = 257}, + [440] = {.lex_state = 252}, + [441] = {.lex_state = 256}, [442] = {.lex_state = 132}, - [443] = {.lex_state = 265}, - [444] = {.lex_state = 132}, + [443] = {.lex_state = 257}, + [444] = {.lex_state = 258}, [445] = {.lex_state = 132}, - [446] = {.lex_state = 132}, + [446] = {.lex_state = 134}, [447] = {.lex_state = 132}, - [448] = {.lex_state = 132}, - [449] = {.lex_state = 265}, + [448] = {.lex_state = 0}, + [449] = {.lex_state = 133}, [450] = {.lex_state = 132}, - [451] = {.lex_state = 243}, - [452] = {.lex_state = 265}, - [453] = {.lex_state = 132}, - [454] = {.lex_state = 243}, - [455] = {.lex_state = 243}, - [456] = {.lex_state = 243}, + [451] = {.lex_state = 0}, + [452] = {.lex_state = 0}, + [453] = {.lex_state = 134}, + [454] = {.lex_state = 132}, + [455] = {.lex_state = 134}, + [456] = {.lex_state = 134}, [457] = {.lex_state = 132}, [458] = {.lex_state = 236, .external_lex_state = 2}, - [459] = {.lex_state = 269}, - [460] = {.lex_state = 269}, - [461] = {.lex_state = 269}, - [462] = {.lex_state = 269}, + [459] = {.lex_state = 132}, + [460] = {.lex_state = 132}, + [461] = {.lex_state = 132}, + [462] = {.lex_state = 236, .external_lex_state = 2}, [463] = {.lex_state = 132}, [464] = {.lex_state = 132}, - [465] = {.lex_state = 267}, + [465] = {.lex_state = 132}, [466] = {.lex_state = 132}, - [467] = {.lex_state = 134}, - [468] = {.lex_state = 132}, - [469] = {.lex_state = 251}, - [470] = {.lex_state = 265}, - [471] = {.lex_state = 251}, - [472] = {.lex_state = 251}, - [473] = {.lex_state = 251}, - [474] = {.lex_state = 235, .external_lex_state = 3}, - [475] = {.lex_state = 242, .external_lex_state = 2}, - [476] = {.lex_state = 262}, - [477] = {.lex_state = 235, .external_lex_state = 4}, - [478] = {.lex_state = 242, .external_lex_state = 2}, - [479] = {.lex_state = 262}, + [467] = {.lex_state = 132}, + [468] = {.lex_state = 236, .external_lex_state = 2}, + [469] = {.lex_state = 134}, + [470] = {.lex_state = 134}, + [471] = {.lex_state = 132}, + [472] = {.lex_state = 132}, + [473] = {.lex_state = 132}, + [474] = {.lex_state = 132}, + [475] = {.lex_state = 132}, + [476] = {.lex_state = 132}, + [477] = {.lex_state = 134}, + [478] = {.lex_state = 132}, + [479] = {.lex_state = 134}, [480] = {.lex_state = 132}, [481] = {.lex_state = 132}, - [482] = {.lex_state = 266}, - [483] = {.lex_state = 132}, + [482] = {.lex_state = 132}, + [483] = {.lex_state = 265}, [484] = {.lex_state = 132}, - [485] = {.lex_state = 266}, + [485] = {.lex_state = 132}, [486] = {.lex_state = 132}, - [487] = {.lex_state = 252}, - [488] = {.lex_state = 265}, - [489] = {.lex_state = 256}, - [490] = {.lex_state = 252}, - [491] = {.lex_state = 252}, - [492] = {.lex_state = 252}, - [493] = {.lex_state = 256}, - [494] = {.lex_state = 235, .external_lex_state = 3}, - [495] = {.lex_state = 235, .external_lex_state = 4}, - [496] = {.lex_state = 256}, - [497] = {.lex_state = 242, .external_lex_state = 2}, - [498] = {.lex_state = 262}, - [499] = {.lex_state = 235, .external_lex_state = 3}, - [500] = {.lex_state = 235, .external_lex_state = 4}, - [501] = {.lex_state = 267}, - [502] = {.lex_state = 262}, - [503] = {.lex_state = 259}, - [504] = {.lex_state = 267}, - [505] = {.lex_state = 236, .external_lex_state = 2}, - [506] = {.lex_state = 267}, - [507] = {.lex_state = 267}, - [508] = {.lex_state = 267}, - [509] = {.lex_state = 132}, - [510] = {.lex_state = 236, .external_lex_state = 2}, - [511] = {.lex_state = 132}, - [512] = {.lex_state = 236, .external_lex_state = 2}, - [513] = {.lex_state = 268, .external_lex_state = 2}, - [514] = {.lex_state = 256}, - [515] = {.lex_state = 0}, - [516] = {.lex_state = 236, .external_lex_state = 2}, - [517] = {.lex_state = 267}, - [518] = {.lex_state = 267}, - [519] = {.lex_state = 132}, - [520] = {.lex_state = 0}, - [521] = {.lex_state = 236, .external_lex_state = 2}, - [522] = {.lex_state = 236, .external_lex_state = 2}, - [523] = {.lex_state = 267}, - [524] = {.lex_state = 270}, - [525] = {.lex_state = 134}, - [526] = {.lex_state = 134}, - [527] = {.lex_state = 242, .external_lex_state = 2}, - [528] = {.lex_state = 236, .external_lex_state = 2}, - [529] = {.lex_state = 0}, - [530] = {.lex_state = 236, .external_lex_state = 2}, - [531] = {.lex_state = 236, .external_lex_state = 2}, - [532] = {.lex_state = 270, .external_lex_state = 2}, - [533] = {.lex_state = 270}, - [534] = {.lex_state = 270}, - [535] = {.lex_state = 256}, - [536] = {.lex_state = 265}, - [537] = {.lex_state = 256}, + [487] = {.lex_state = 132}, + [488] = {.lex_state = 132}, + [489] = {.lex_state = 265}, + [490] = {.lex_state = 132}, + [491] = {.lex_state = 243}, + [492] = {.lex_state = 265}, + [493] = {.lex_state = 132}, + [494] = {.lex_state = 243}, + [495] = {.lex_state = 243}, + [496] = {.lex_state = 243}, + [497] = {.lex_state = 132}, + [498] = {.lex_state = 236, .external_lex_state = 2}, + [499] = {.lex_state = 274}, + [500] = {.lex_state = 274}, + [501] = {.lex_state = 274}, + [502] = {.lex_state = 274}, + [503] = {.lex_state = 132}, + [504] = {.lex_state = 132}, + [505] = {.lex_state = 270}, + [506] = {.lex_state = 132}, + [507] = {.lex_state = 134}, + [508] = {.lex_state = 132}, + [509] = {.lex_state = 251}, + [510] = {.lex_state = 265}, + [511] = {.lex_state = 251}, + [512] = {.lex_state = 251}, + [513] = {.lex_state = 251}, + [514] = {.lex_state = 235, .external_lex_state = 3}, + [515] = {.lex_state = 242, .external_lex_state = 2}, + [516] = {.lex_state = 262}, + [517] = {.lex_state = 235, .external_lex_state = 4}, + [518] = {.lex_state = 242, .external_lex_state = 2}, + [519] = {.lex_state = 262}, + [520] = {.lex_state = 132}, + [521] = {.lex_state = 132}, + [522] = {.lex_state = 266}, + [523] = {.lex_state = 132}, + [524] = {.lex_state = 132}, + [525] = {.lex_state = 266}, + [526] = {.lex_state = 132}, + [527] = {.lex_state = 252}, + [528] = {.lex_state = 265}, + [529] = {.lex_state = 256}, + [530] = {.lex_state = 252}, + [531] = {.lex_state = 252}, + [532] = {.lex_state = 252}, + [533] = {.lex_state = 256}, + [534] = {.lex_state = 235, .external_lex_state = 3}, + [535] = {.lex_state = 235, .external_lex_state = 4}, + [536] = {.lex_state = 134}, + [537] = {.lex_state = 134}, [538] = {.lex_state = 256}, - [539] = {.lex_state = 267}, - [540] = {.lex_state = 0}, + [539] = {.lex_state = 242, .external_lex_state = 2}, + [540] = {.lex_state = 262}, [541] = {.lex_state = 256}, - [542] = {.lex_state = 256}, - [543] = {.lex_state = 134}, - [544] = {.lex_state = 257}, - [545] = {.lex_state = 257}, - [546] = {.lex_state = 265}, - [547] = {.lex_state = 257}, - [548] = {.lex_state = 257}, - [549] = {.lex_state = 257}, - [550] = {.lex_state = 134}, - [551] = {.lex_state = 256}, - [552] = {.lex_state = 258}, - [553] = {.lex_state = 265}, - [554] = {.lex_state = 258}, - [555] = {.lex_state = 258}, - [556] = {.lex_state = 258}, - [557] = {.lex_state = 259}, - [558] = {.lex_state = 235, .external_lex_state = 3}, - [559] = {.lex_state = 235, .external_lex_state = 4}, - [560] = {.lex_state = 132}, - [561] = {.lex_state = 233}, - [562] = {.lex_state = 259}, - [563] = {.lex_state = 242, .external_lex_state = 2}, - [564] = {.lex_state = 262}, - [565] = {.lex_state = 0}, - [566] = {.lex_state = 262}, - [567] = {.lex_state = 0}, - [568] = {.lex_state = 262}, - [569] = {.lex_state = 133}, - [570] = {.lex_state = 132}, - [571] = {.lex_state = 234}, - [572] = {.lex_state = 262}, - [573] = {.lex_state = 262}, - [574] = {.lex_state = 262}, - [575] = {.lex_state = 262}, - [576] = {.lex_state = 134}, - [577] = {.lex_state = 262}, - [578] = {.lex_state = 0}, - [579] = {.lex_state = 132}, - [580] = {.lex_state = 236, .external_lex_state = 2}, - [581] = {.lex_state = 132}, - [582] = {.lex_state = 132}, - [583] = {.lex_state = 132}, - [584] = {.lex_state = 236, .external_lex_state = 2}, - [585] = {.lex_state = 132}, - [586] = {.lex_state = 132}, - [587] = {.lex_state = 132}, - [588] = {.lex_state = 132}, - [589] = {.lex_state = 242, .external_lex_state = 2}, - [590] = {.lex_state = 132}, - [591] = {.lex_state = 236, .external_lex_state = 2}, - [592] = {.lex_state = 132}, - [593] = {.lex_state = 262}, - [594] = {.lex_state = 262}, - [595] = {.lex_state = 262}, - [596] = {.lex_state = 259}, - [597] = {.lex_state = 132}, - [598] = {.lex_state = 271}, - [599] = {.lex_state = 134}, - [600] = {.lex_state = 134}, - [601] = {.lex_state = 242, .external_lex_state = 2}, - [602] = {.lex_state = 236, .external_lex_state = 2}, - [603] = {.lex_state = 0}, - [604] = {.lex_state = 236, .external_lex_state = 2}, - [605] = {.lex_state = 236, .external_lex_state = 2}, - [606] = {.lex_state = 271, .external_lex_state = 2}, - [607] = {.lex_state = 271}, - [608] = {.lex_state = 271}, - [609] = {.lex_state = 0}, + [542] = {.lex_state = 133, .external_lex_state = 2}, + [543] = {.lex_state = 0}, + [544] = {.lex_state = 235, .external_lex_state = 3}, + [545] = {.lex_state = 235, .external_lex_state = 4}, + [546] = {.lex_state = 270}, + [547] = {.lex_state = 262}, + [548] = {.lex_state = 259}, + [549] = {.lex_state = 0}, + [550] = {.lex_state = 270}, + [551] = {.lex_state = 236, .external_lex_state = 2}, + [552] = {.lex_state = 270}, + [553] = {.lex_state = 270}, + [554] = {.lex_state = 270}, + [555] = {.lex_state = 132}, + [556] = {.lex_state = 236, .external_lex_state = 2}, + [557] = {.lex_state = 132}, + [558] = {.lex_state = 236, .external_lex_state = 2}, + [559] = {.lex_state = 271, .external_lex_state = 2}, + [560] = {.lex_state = 256}, + [561] = {.lex_state = 0}, + [562] = {.lex_state = 236, .external_lex_state = 2}, + [563] = {.lex_state = 270}, + [564] = {.lex_state = 275}, + [565] = {.lex_state = 132}, + [566] = {.lex_state = 0}, + [567] = {.lex_state = 236, .external_lex_state = 2}, + [568] = {.lex_state = 236, .external_lex_state = 2}, + [569] = {.lex_state = 270}, + [570] = {.lex_state = 276}, + [571] = {.lex_state = 134}, + [572] = {.lex_state = 134}, + [573] = {.lex_state = 242, .external_lex_state = 2}, + [574] = {.lex_state = 236, .external_lex_state = 2}, + [575] = {.lex_state = 0}, + [576] = {.lex_state = 236, .external_lex_state = 2}, + [577] = {.lex_state = 236, .external_lex_state = 2}, + [578] = {.lex_state = 276, .external_lex_state = 2}, + [579] = {.lex_state = 276}, + [580] = {.lex_state = 276}, + [581] = {.lex_state = 256}, + [582] = {.lex_state = 265}, + [583] = {.lex_state = 256}, + [584] = {.lex_state = 272}, + [585] = {.lex_state = 270}, + [586] = {.lex_state = 0}, + [587] = {.lex_state = 256}, + [588] = {.lex_state = 256}, + [589] = {.lex_state = 256}, + [590] = {.lex_state = 134}, + [591] = {.lex_state = 257}, + [592] = {.lex_state = 257}, + [593] = {.lex_state = 265}, + [594] = {.lex_state = 257}, + [595] = {.lex_state = 257}, + [596] = {.lex_state = 257}, + [597] = {.lex_state = 134}, + [598] = {.lex_state = 256}, + [599] = {.lex_state = 258}, + [600] = {.lex_state = 265}, + [601] = {.lex_state = 258}, + [602] = {.lex_state = 258}, + [603] = {.lex_state = 258}, + [604] = {.lex_state = 259}, + [605] = {.lex_state = 235, .external_lex_state = 3}, + [606] = {.lex_state = 235, .external_lex_state = 4}, + [607] = {.lex_state = 233}, + [608] = {.lex_state = 259}, + [609] = {.lex_state = 242, .external_lex_state = 2}, [610] = {.lex_state = 262}, [611] = {.lex_state = 259}, - [612] = {.lex_state = 242, .external_lex_state = 2}, + [612] = {.lex_state = 0}, [613] = {.lex_state = 262}, - [614] = {.lex_state = 132}, + [614] = {.lex_state = 0}, [615] = {.lex_state = 262}, - [616] = {.lex_state = 259}, - [617] = {.lex_state = 265}, - [618] = {.lex_state = 259}, - [619] = {.lex_state = 259}, - [620] = {.lex_state = 267}, - [621] = {.lex_state = 0}, - [622] = {.lex_state = 259}, - [623] = {.lex_state = 259}, - [624] = {.lex_state = 264}, - [625] = {.lex_state = 265}, - [626] = {.lex_state = 256}, - [627] = {.lex_state = 264}, - [628] = {.lex_state = 264}, - [629] = {.lex_state = 264}, - [630] = {.lex_state = 269}, - [631] = {.lex_state = 267}, + [616] = {.lex_state = 133}, + [617] = {.lex_state = 132}, + [618] = {.lex_state = 234}, + [619] = {.lex_state = 262}, + [620] = {.lex_state = 262}, + [621] = {.lex_state = 262}, + [622] = {.lex_state = 262}, + [623] = {.lex_state = 134}, + [624] = {.lex_state = 262}, + [625] = {.lex_state = 0}, + [626] = {.lex_state = 132}, + [627] = {.lex_state = 236, .external_lex_state = 2}, + [628] = {.lex_state = 132}, + [629] = {.lex_state = 132}, + [630] = {.lex_state = 132}, + [631] = {.lex_state = 236, .external_lex_state = 2}, [632] = {.lex_state = 132}, - [633] = {.lex_state = 134}, + [633] = {.lex_state = 132}, [634] = {.lex_state = 132}, - [635] = {.lex_state = 236, .external_lex_state = 2}, - [636] = {.lex_state = 0}, - [637] = {.lex_state = 264}, - [638] = {.lex_state = 134}, + [635] = {.lex_state = 132}, + [636] = {.lex_state = 242, .external_lex_state = 2}, + [637] = {.lex_state = 132}, + [638] = {.lex_state = 236, .external_lex_state = 2}, [639] = {.lex_state = 132}, - [640] = {.lex_state = 132}, - [641] = {.lex_state = 132}, - [642] = {.lex_state = 132}, - [643] = {.lex_state = 0}, + [640] = {.lex_state = 262}, + [641] = {.lex_state = 262}, + [642] = {.lex_state = 262}, + [643] = {.lex_state = 259}, [644] = {.lex_state = 132}, - [645] = {.lex_state = 0}, + [645] = {.lex_state = 277}, [646] = {.lex_state = 134}, [647] = {.lex_state = 134}, - [648] = {.lex_state = 272}, - [649] = {.lex_state = 272}, - [650] = {.lex_state = 272}, - [651] = {.lex_state = 272}, - [652] = {.lex_state = 132}, - [653] = {.lex_state = 132}, - [654] = {.lex_state = 273}, - [655] = {.lex_state = 273}, - [656] = {.lex_state = 273}, - [657] = {.lex_state = 273}, - [658] = {.lex_state = 132}, - [659] = {.lex_state = 132}, - [660] = {.lex_state = 274}, - [661] = {.lex_state = 134}, - [662] = {.lex_state = 134}, - [663] = {.lex_state = 242, .external_lex_state = 2}, - [664] = {.lex_state = 236, .external_lex_state = 2}, - [665] = {.lex_state = 0}, - [666] = {.lex_state = 236, .external_lex_state = 2}, - [667] = {.lex_state = 236, .external_lex_state = 2}, - [668] = {.lex_state = 274, .external_lex_state = 2}, - [669] = {.lex_state = 274}, - [670] = {.lex_state = 274}, - [671] = {.lex_state = 132}, - [672] = {.lex_state = 257}, - [673] = {.lex_state = 273}, - [674] = {.lex_state = 274}, - [675] = {.lex_state = 132}, - [676] = {.lex_state = 257}, - [677] = {.lex_state = 275}, - [678] = {.lex_state = 275}, - [679] = {.lex_state = 275}, - [680] = {.lex_state = 275}, - [681] = {.lex_state = 132}, - [682] = {.lex_state = 132}, - [683] = {.lex_state = 132}, - [684] = {.lex_state = 276}, - [685] = {.lex_state = 276}, - [686] = {.lex_state = 276}, - [687] = {.lex_state = 276}, - [688] = {.lex_state = 132}, - [689] = {.lex_state = 132}, - [690] = {.lex_state = 274}, - [691] = {.lex_state = 132}, + [648] = {.lex_state = 242, .external_lex_state = 2}, + [649] = {.lex_state = 236, .external_lex_state = 2}, + [650] = {.lex_state = 0}, + [651] = {.lex_state = 236, .external_lex_state = 2}, + [652] = {.lex_state = 236, .external_lex_state = 2}, + [653] = {.lex_state = 277, .external_lex_state = 2}, + [654] = {.lex_state = 277}, + [655] = {.lex_state = 277}, + [656] = {.lex_state = 0}, + [657] = {.lex_state = 262}, + [658] = {.lex_state = 259}, + [659] = {.lex_state = 242, .external_lex_state = 2}, + [660] = {.lex_state = 262}, + [661] = {.lex_state = 132}, + [662] = {.lex_state = 132}, + [663] = {.lex_state = 132}, + [664] = {.lex_state = 132}, + [665] = {.lex_state = 132}, + [666] = {.lex_state = 132}, + [667] = {.lex_state = 262}, + [668] = {.lex_state = 259}, + [669] = {.lex_state = 265}, + [670] = {.lex_state = 259}, + [671] = {.lex_state = 273}, + [672] = {.lex_state = 270}, + [673] = {.lex_state = 0}, + [674] = {.lex_state = 259}, + [675] = {.lex_state = 259}, + [676] = {.lex_state = 259}, + [677] = {.lex_state = 264}, + [678] = {.lex_state = 265}, + [679] = {.lex_state = 256}, + [680] = {.lex_state = 264}, + [681] = {.lex_state = 264}, + [682] = {.lex_state = 264}, + [683] = {.lex_state = 274}, + [684] = {.lex_state = 270}, + [685] = {.lex_state = 132}, + [686] = {.lex_state = 134}, + [687] = {.lex_state = 132}, + [688] = {.lex_state = 236, .external_lex_state = 2}, + [689] = {.lex_state = 0}, + [690] = {.lex_state = 264}, + [691] = {.lex_state = 134}, [692] = {.lex_state = 236, .external_lex_state = 2}, - [693] = {.lex_state = 134}, - [694] = {.lex_state = 134}, - [695] = {.lex_state = 134}, - [696] = {.lex_state = 265}, - [697] = {.lex_state = 265}, - [698] = {.lex_state = 265}, - [699] = {.lex_state = 265}, - [700] = {.lex_state = 265}, - [701] = {.lex_state = 132}, + [693] = {.lex_state = 258}, + [694] = {.lex_state = 236, .external_lex_state = 2}, + [695] = {.lex_state = 258}, + [696] = {.lex_state = 258}, + [697] = {.lex_state = 132}, + [698] = {.lex_state = 132}, + [699] = {.lex_state = 132}, + [700] = {.lex_state = 132}, + [701] = {.lex_state = 0}, [702] = {.lex_state = 132}, - [703] = {.lex_state = 265}, - [704] = {.lex_state = 132}, - [705] = {.lex_state = 243}, - [706] = {.lex_state = 132}, - [707] = {.lex_state = 132}, - [708] = {.lex_state = 132}, - [709] = {.lex_state = 132}, - [710] = {.lex_state = 269}, - [711] = {.lex_state = 267}, - [712] = {.lex_state = 132}, - [713] = {.lex_state = 132}, - [714] = {.lex_state = 269}, - [715] = {.lex_state = 236, .external_lex_state = 2}, + [703] = {.lex_state = 0}, + [704] = {.lex_state = 134}, + [705] = {.lex_state = 134}, + [706] = {.lex_state = 278}, + [707] = {.lex_state = 278}, + [708] = {.lex_state = 278}, + [709] = {.lex_state = 278}, + [710] = {.lex_state = 132}, + [711] = {.lex_state = 132}, + [712] = {.lex_state = 279}, + [713] = {.lex_state = 279}, + [714] = {.lex_state = 279}, + [715] = {.lex_state = 279}, [716] = {.lex_state = 132}, [717] = {.lex_state = 132}, - [718] = {.lex_state = 269}, - [719] = {.lex_state = 132}, - [720] = {.lex_state = 251}, - [721] = {.lex_state = 132}, - [722] = {.lex_state = 235, .external_lex_state = 3}, - [723] = {.lex_state = 242, .external_lex_state = 2}, - [724] = {.lex_state = 235, .external_lex_state = 4}, - [725] = {.lex_state = 242, .external_lex_state = 2}, - [726] = {.lex_state = 266}, - [727] = {.lex_state = 265}, - [728] = {.lex_state = 266}, - [729] = {.lex_state = 266}, - [730] = {.lex_state = 266}, - [731] = {.lex_state = 252}, - [732] = {.lex_state = 132}, - [733] = {.lex_state = 256}, - [734] = {.lex_state = 256}, - [735] = {.lex_state = 242, .external_lex_state = 2}, - [736] = {.lex_state = 267}, - [737] = {.lex_state = 235, .external_lex_state = 3}, - [738] = {.lex_state = 235, .external_lex_state = 4}, - [739] = {.lex_state = 267}, - [740] = {.lex_state = 242, .external_lex_state = 2}, - [741] = {.lex_state = 262}, - [742] = {.lex_state = 267}, - [743] = {.lex_state = 132}, - [744] = {.lex_state = 277}, - [745] = {.lex_state = 134}, - [746] = {.lex_state = 134}, - [747] = {.lex_state = 242, .external_lex_state = 2}, - [748] = {.lex_state = 236, .external_lex_state = 2}, - [749] = {.lex_state = 0}, + [718] = {.lex_state = 280}, + [719] = {.lex_state = 134}, + [720] = {.lex_state = 134}, + [721] = {.lex_state = 242, .external_lex_state = 2}, + [722] = {.lex_state = 236, .external_lex_state = 2}, + [723] = {.lex_state = 0}, + [724] = {.lex_state = 236, .external_lex_state = 2}, + [725] = {.lex_state = 236, .external_lex_state = 2}, + [726] = {.lex_state = 280, .external_lex_state = 2}, + [727] = {.lex_state = 280}, + [728] = {.lex_state = 280}, + [729] = {.lex_state = 132}, + [730] = {.lex_state = 257}, + [731] = {.lex_state = 279}, + [732] = {.lex_state = 280}, + [733] = {.lex_state = 132}, + [734] = {.lex_state = 257}, + [735] = {.lex_state = 281}, + [736] = {.lex_state = 281}, + [737] = {.lex_state = 281}, + [738] = {.lex_state = 281}, + [739] = {.lex_state = 132}, + [740] = {.lex_state = 132}, + [741] = {.lex_state = 132}, + [742] = {.lex_state = 282}, + [743] = {.lex_state = 282}, + [744] = {.lex_state = 282}, + [745] = {.lex_state = 282}, + [746] = {.lex_state = 132}, + [747] = {.lex_state = 132}, + [748] = {.lex_state = 280}, + [749] = {.lex_state = 132}, [750] = {.lex_state = 236, .external_lex_state = 2}, - [751] = {.lex_state = 236, .external_lex_state = 2}, - [752] = {.lex_state = 277, .external_lex_state = 2}, - [753] = {.lex_state = 277}, - [754] = {.lex_state = 277}, - [755] = {.lex_state = 267}, - [756] = {.lex_state = 267}, - [757] = {.lex_state = 265}, - [758] = {.lex_state = 267}, - [759] = {.lex_state = 267}, - [760] = {.lex_state = 267}, - [761] = {.lex_state = 0}, - [762] = {.lex_state = 267}, - [763] = {.lex_state = 267}, - [764] = {.lex_state = 256}, - [765] = {.lex_state = 132}, - [766] = {.lex_state = 236, .external_lex_state = 2}, - [767] = {.lex_state = 236, .external_lex_state = 2}, - [768] = {.lex_state = 236, .external_lex_state = 2}, - [769] = {.lex_state = 236, .external_lex_state = 2}, - [770] = {.lex_state = 235, .external_lex_state = 3}, - [771] = {.lex_state = 235, .external_lex_state = 4}, - [772] = {.lex_state = 270}, - [773] = {.lex_state = 262}, - [774] = {.lex_state = 259}, - [775] = {.lex_state = 267}, - [776] = {.lex_state = 236, .external_lex_state = 2}, - [777] = {.lex_state = 270}, - [778] = {.lex_state = 270}, + [751] = {.lex_state = 134}, + [752] = {.lex_state = 134}, + [753] = {.lex_state = 132}, + [754] = {.lex_state = 236, .external_lex_state = 2}, + [755] = {.lex_state = 132}, + [756] = {.lex_state = 132}, + [757] = {.lex_state = 132}, + [758] = {.lex_state = 236, .external_lex_state = 2}, + [759] = {.lex_state = 132}, + [760] = {.lex_state = 132}, + [761] = {.lex_state = 132}, + [762] = {.lex_state = 132}, + [763] = {.lex_state = 134}, + [764] = {.lex_state = 265}, + [765] = {.lex_state = 265}, + [766] = {.lex_state = 265}, + [767] = {.lex_state = 265}, + [768] = {.lex_state = 265}, + [769] = {.lex_state = 132}, + [770] = {.lex_state = 132}, + [771] = {.lex_state = 265}, + [772] = {.lex_state = 132}, + [773] = {.lex_state = 243}, + [774] = {.lex_state = 132}, + [775] = {.lex_state = 132}, + [776] = {.lex_state = 132}, + [777] = {.lex_state = 132}, + [778] = {.lex_state = 274}, [779] = {.lex_state = 270}, [780] = {.lex_state = 132}, [781] = {.lex_state = 132}, - [782] = {.lex_state = 236, .external_lex_state = 2}, - [783] = {.lex_state = 268, .external_lex_state = 2}, - [784] = {.lex_state = 236, .external_lex_state = 2}, - [785] = {.lex_state = 0}, - [786] = {.lex_state = 236, .external_lex_state = 2}, - [787] = {.lex_state = 270}, - [788] = {.lex_state = 270}, - [789] = {.lex_state = 256}, - [790] = {.lex_state = 132}, - [791] = {.lex_state = 256}, - [792] = {.lex_state = 132}, - [793] = {.lex_state = 256}, - [794] = {.lex_state = 133, .external_lex_state = 2}, - [795] = {.lex_state = 0}, - [796] = {.lex_state = 0}, - [797] = {.lex_state = 257}, - [798] = {.lex_state = 132}, - [799] = {.lex_state = 258}, + [782] = {.lex_state = 274}, + [783] = {.lex_state = 236, .external_lex_state = 2}, + [784] = {.lex_state = 132}, + [785] = {.lex_state = 132}, + [786] = {.lex_state = 274}, + [787] = {.lex_state = 132}, + [788] = {.lex_state = 251}, + [789] = {.lex_state = 132}, + [790] = {.lex_state = 235, .external_lex_state = 3}, + [791] = {.lex_state = 242, .external_lex_state = 2}, + [792] = {.lex_state = 235, .external_lex_state = 4}, + [793] = {.lex_state = 242, .external_lex_state = 2}, + [794] = {.lex_state = 266}, + [795] = {.lex_state = 265}, + [796] = {.lex_state = 266}, + [797] = {.lex_state = 266}, + [798] = {.lex_state = 266}, + [799] = {.lex_state = 252}, [800] = {.lex_state = 132}, - [801] = {.lex_state = 259}, - [802] = {.lex_state = 262}, + [801] = {.lex_state = 256}, + [802] = {.lex_state = 236, .external_lex_state = 2}, [803] = {.lex_state = 132}, - [804] = {.lex_state = 262}, - [805] = {.lex_state = 262}, - [806] = {.lex_state = 259}, + [804] = {.lex_state = 236, .external_lex_state = 2}, + [805] = {.lex_state = 132}, + [806] = {.lex_state = 256}, [807] = {.lex_state = 242, .external_lex_state = 2}, - [808] = {.lex_state = 262}, - [809] = {.lex_state = 262}, - [810] = {.lex_state = 262}, - [811] = {.lex_state = 262}, - [812] = {.lex_state = 262}, + [808] = {.lex_state = 270}, + [809] = {.lex_state = 235, .external_lex_state = 3}, + [810] = {.lex_state = 235, .external_lex_state = 4}, + [811] = {.lex_state = 270}, + [812] = {.lex_state = 242, .external_lex_state = 2}, [813] = {.lex_state = 262}, - [814] = {.lex_state = 0}, - [815] = {.lex_state = 132}, - [816] = {.lex_state = 278}, - [817] = {.lex_state = 278}, - [818] = {.lex_state = 278}, - [819] = {.lex_state = 278}, - [820] = {.lex_state = 132}, - [821] = {.lex_state = 132}, - [822] = {.lex_state = 262}, - [823] = {.lex_state = 132}, - [824] = {.lex_state = 262}, - [825] = {.lex_state = 0}, - [826] = {.lex_state = 279}, - [827] = {.lex_state = 279}, - [828] = {.lex_state = 279}, - [829] = {.lex_state = 279}, - [830] = {.lex_state = 132}, - [831] = {.lex_state = 132}, - [832] = {.lex_state = 259}, - [833] = {.lex_state = 132}, - [834] = {.lex_state = 257}, - [835] = {.lex_state = 279}, - [836] = {.lex_state = 259}, - [837] = {.lex_state = 132}, - [838] = {.lex_state = 257}, - [839] = {.lex_state = 280}, - [840] = {.lex_state = 280}, - [841] = {.lex_state = 280}, - [842] = {.lex_state = 280}, - [843] = {.lex_state = 132}, - [844] = {.lex_state = 132}, - [845] = {.lex_state = 132}, - [846] = {.lex_state = 262}, + [814] = {.lex_state = 270}, + [815] = {.lex_state = 270}, + [816] = {.lex_state = 132}, + [817] = {.lex_state = 283}, + [818] = {.lex_state = 134}, + [819] = {.lex_state = 134}, + [820] = {.lex_state = 242, .external_lex_state = 2}, + [821] = {.lex_state = 236, .external_lex_state = 2}, + [822] = {.lex_state = 0}, + [823] = {.lex_state = 236, .external_lex_state = 2}, + [824] = {.lex_state = 236, .external_lex_state = 2}, + [825] = {.lex_state = 283, .external_lex_state = 2}, + [826] = {.lex_state = 283}, + [827] = {.lex_state = 283}, + [828] = {.lex_state = 270}, + [829] = {.lex_state = 270}, + [830] = {.lex_state = 265}, + [831] = {.lex_state = 270}, + [832] = {.lex_state = 275}, + [833] = {.lex_state = 270}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 270}, + [836] = {.lex_state = 270}, + [837] = {.lex_state = 270}, + [838] = {.lex_state = 256}, + [839] = {.lex_state = 132}, + [840] = {.lex_state = 236, .external_lex_state = 2}, + [841] = {.lex_state = 236, .external_lex_state = 2}, + [842] = {.lex_state = 236, .external_lex_state = 2}, + [843] = {.lex_state = 236, .external_lex_state = 2}, + [844] = {.lex_state = 235, .external_lex_state = 3}, + [845] = {.lex_state = 235, .external_lex_state = 4}, + [846] = {.lex_state = 276}, [847] = {.lex_state = 262}, [848] = {.lex_state = 259}, - [849] = {.lex_state = 281}, - [850] = {.lex_state = 281}, - [851] = {.lex_state = 281}, - [852] = {.lex_state = 281}, - [853] = {.lex_state = 132}, - [854] = {.lex_state = 132}, - [855] = {.lex_state = 259}, - [856] = {.lex_state = 262}, - [857] = {.lex_state = 132}, - [858] = {.lex_state = 132}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 270}, + [851] = {.lex_state = 236, .external_lex_state = 2}, + [852] = {.lex_state = 276}, + [853] = {.lex_state = 276}, + [854] = {.lex_state = 276}, + [855] = {.lex_state = 132}, + [856] = {.lex_state = 132}, + [857] = {.lex_state = 236, .external_lex_state = 2}, + [858] = {.lex_state = 271, .external_lex_state = 2}, [859] = {.lex_state = 236, .external_lex_state = 2}, - [860] = {.lex_state = 262}, - [861] = {.lex_state = 262}, - [862] = {.lex_state = 259}, - [863] = {.lex_state = 235, .external_lex_state = 3}, - [864] = {.lex_state = 235, .external_lex_state = 4}, - [865] = {.lex_state = 271}, - [866] = {.lex_state = 262}, - [867] = {.lex_state = 259}, - [868] = {.lex_state = 267}, - [869] = {.lex_state = 236, .external_lex_state = 2}, - [870] = {.lex_state = 271}, - [871] = {.lex_state = 271}, - [872] = {.lex_state = 271}, - [873] = {.lex_state = 132}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 236, .external_lex_state = 2}, + [862] = {.lex_state = 276}, + [863] = {.lex_state = 284}, + [864] = {.lex_state = 256}, + [865] = {.lex_state = 132}, + [866] = {.lex_state = 272}, + [867] = {.lex_state = 132}, + [868] = {.lex_state = 256}, + [869] = {.lex_state = 257}, + [870] = {.lex_state = 132}, + [871] = {.lex_state = 258}, + [872] = {.lex_state = 132}, + [873] = {.lex_state = 259}, [874] = {.lex_state = 132}, - [875] = {.lex_state = 236, .external_lex_state = 2}, - [876] = {.lex_state = 268, .external_lex_state = 2}, - [877] = {.lex_state = 236, .external_lex_state = 2}, - [878] = {.lex_state = 0}, - [879] = {.lex_state = 236, .external_lex_state = 2}, - [880] = {.lex_state = 271}, - [881] = {.lex_state = 271}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 282, .external_lex_state = 2}, + [875] = {.lex_state = 262}, + [876] = {.lex_state = 262}, + [877] = {.lex_state = 262}, + [878] = {.lex_state = 259}, + [879] = {.lex_state = 242, .external_lex_state = 2}, + [880] = {.lex_state = 262}, + [881] = {.lex_state = 262}, + [882] = {.lex_state = 262}, + [883] = {.lex_state = 262}, [884] = {.lex_state = 262}, [885] = {.lex_state = 262}, - [886] = {.lex_state = 259}, + [886] = {.lex_state = 0}, [887] = {.lex_state = 132}, - [888] = {.lex_state = 259}, - [889] = {.lex_state = 132}, - [890] = {.lex_state = 259}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 264}, + [888] = {.lex_state = 285}, + [889] = {.lex_state = 285}, + [890] = {.lex_state = 285}, + [891] = {.lex_state = 285}, + [892] = {.lex_state = 132}, [893] = {.lex_state = 132}, - [894] = {.lex_state = 236, .external_lex_state = 2}, - [895] = {.lex_state = 256}, - [896] = {.lex_state = 236, .external_lex_state = 2}, + [894] = {.lex_state = 262}, + [895] = {.lex_state = 132}, + [896] = {.lex_state = 262}, [897] = {.lex_state = 0}, - [898] = {.lex_state = 0}, - [899] = {.lex_state = 264}, - [900] = {.lex_state = 134}, - [901] = {.lex_state = 132}, + [898] = {.lex_state = 286}, + [899] = {.lex_state = 286}, + [900] = {.lex_state = 286}, + [901] = {.lex_state = 286}, [902] = {.lex_state = 132}, - [903] = {.lex_state = 272}, - [904] = {.lex_state = 132}, + [903] = {.lex_state = 132}, + [904] = {.lex_state = 259}, [905] = {.lex_state = 132}, - [906] = {.lex_state = 272}, - [907] = {.lex_state = 132}, - [908] = {.lex_state = 132}, + [906] = {.lex_state = 257}, + [907] = {.lex_state = 286}, + [908] = {.lex_state = 259}, [909] = {.lex_state = 132}, - [910] = {.lex_state = 273}, - [911] = {.lex_state = 236, .external_lex_state = 2}, - [912] = {.lex_state = 132}, - [913] = {.lex_state = 132}, - [914] = {.lex_state = 273}, + [910] = {.lex_state = 257}, + [911] = {.lex_state = 287}, + [912] = {.lex_state = 287}, + [913] = {.lex_state = 287}, + [914] = {.lex_state = 287}, [915] = {.lex_state = 132}, - [916] = {.lex_state = 235, .external_lex_state = 3}, - [917] = {.lex_state = 235, .external_lex_state = 4}, - [918] = {.lex_state = 274}, + [916] = {.lex_state = 132}, + [917] = {.lex_state = 132}, + [918] = {.lex_state = 262}, [919] = {.lex_state = 262}, [920] = {.lex_state = 259}, - [921] = {.lex_state = 267}, - [922] = {.lex_state = 236, .external_lex_state = 2}, - [923] = {.lex_state = 274}, - [924] = {.lex_state = 274}, - [925] = {.lex_state = 274}, + [921] = {.lex_state = 288}, + [922] = {.lex_state = 288}, + [923] = {.lex_state = 288}, + [924] = {.lex_state = 288}, + [925] = {.lex_state = 132}, [926] = {.lex_state = 132}, - [927] = {.lex_state = 132}, - [928] = {.lex_state = 236, .external_lex_state = 2}, - [929] = {.lex_state = 268, .external_lex_state = 2}, - [930] = {.lex_state = 0}, + [927] = {.lex_state = 259}, + [928] = {.lex_state = 262}, + [929] = {.lex_state = 132}, + [930] = {.lex_state = 132}, [931] = {.lex_state = 236, .external_lex_state = 2}, - [932] = {.lex_state = 274}, - [933] = {.lex_state = 274}, - [934] = {.lex_state = 275}, - [935] = {.lex_state = 236, .external_lex_state = 2}, - [936] = {.lex_state = 275}, - [937] = {.lex_state = 132}, - [938] = {.lex_state = 132}, - [939] = {.lex_state = 275}, - [940] = {.lex_state = 132}, - [941] = {.lex_state = 132}, - [942] = {.lex_state = 275}, - [943] = {.lex_state = 132}, - [944] = {.lex_state = 275}, - [945] = {.lex_state = 132}, + [932] = {.lex_state = 262}, + [933] = {.lex_state = 262}, + [934] = {.lex_state = 259}, + [935] = {.lex_state = 235, .external_lex_state = 3}, + [936] = {.lex_state = 235, .external_lex_state = 4}, + [937] = {.lex_state = 277}, + [938] = {.lex_state = 262}, + [939] = {.lex_state = 259}, + [940] = {.lex_state = 0}, + [941] = {.lex_state = 270}, + [942] = {.lex_state = 236, .external_lex_state = 2}, + [943] = {.lex_state = 277}, + [944] = {.lex_state = 277}, + [945] = {.lex_state = 277}, [946] = {.lex_state = 132}, - [947] = {.lex_state = 276}, + [947] = {.lex_state = 132}, [948] = {.lex_state = 236, .external_lex_state = 2}, - [949] = {.lex_state = 132}, - [950] = {.lex_state = 132}, - [951] = {.lex_state = 276}, - [952] = {.lex_state = 132}, - [953] = {.lex_state = 276}, - [954] = {.lex_state = 274}, - [955] = {.lex_state = 132}, - [956] = {.lex_state = 134}, - [957] = {.lex_state = 134}, - [958] = {.lex_state = 265}, - [959] = {.lex_state = 132}, - [960] = {.lex_state = 265}, - [961] = {.lex_state = 243}, + [949] = {.lex_state = 271, .external_lex_state = 2}, + [950] = {.lex_state = 236, .external_lex_state = 2}, + [951] = {.lex_state = 0}, + [952] = {.lex_state = 236, .external_lex_state = 2}, + [953] = {.lex_state = 277}, + [954] = {.lex_state = 289}, + [955] = {.lex_state = 0}, + [956] = {.lex_state = 290, .external_lex_state = 2}, + [957] = {.lex_state = 262}, + [958] = {.lex_state = 132}, + [959] = {.lex_state = 236, .external_lex_state = 2}, + [960] = {.lex_state = 132}, + [961] = {.lex_state = 132}, [962] = {.lex_state = 132}, - [963] = {.lex_state = 265}, - [964] = {.lex_state = 236, .external_lex_state = 2}, - [965] = {.lex_state = 269}, - [966] = {.lex_state = 265}, - [967] = {.lex_state = 267}, - [968] = {.lex_state = 269}, - [969] = {.lex_state = 269}, - [970] = {.lex_state = 269}, - [971] = {.lex_state = 251}, - [972] = {.lex_state = 235, .external_lex_state = 3}, - [973] = {.lex_state = 235, .external_lex_state = 4}, - [974] = {.lex_state = 266}, + [963] = {.lex_state = 236, .external_lex_state = 2}, + [964] = {.lex_state = 132}, + [965] = {.lex_state = 132}, + [966] = {.lex_state = 132}, + [967] = {.lex_state = 132}, + [968] = {.lex_state = 262}, + [969] = {.lex_state = 259}, + [970] = {.lex_state = 132}, + [971] = {.lex_state = 273}, + [972] = {.lex_state = 132}, + [973] = {.lex_state = 259}, + [974] = {.lex_state = 264}, [975] = {.lex_state = 132}, - [976] = {.lex_state = 252}, + [976] = {.lex_state = 236, .external_lex_state = 2}, [977] = {.lex_state = 256}, - [978] = {.lex_state = 267}, - [979] = {.lex_state = 267}, - [980] = {.lex_state = 242, .external_lex_state = 2}, - [981] = {.lex_state = 267}, - [982] = {.lex_state = 235, .external_lex_state = 3}, - [983] = {.lex_state = 235, .external_lex_state = 4}, - [984] = {.lex_state = 277}, - [985] = {.lex_state = 262}, - [986] = {.lex_state = 259}, - [987] = {.lex_state = 267}, - [988] = {.lex_state = 236, .external_lex_state = 2}, - [989] = {.lex_state = 277}, - [990] = {.lex_state = 277}, - [991] = {.lex_state = 277}, + [978] = {.lex_state = 236, .external_lex_state = 2}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 256}, + [982] = {.lex_state = 256}, + [983] = {.lex_state = 264}, + [984] = {.lex_state = 134}, + [985] = {.lex_state = 132}, + [986] = {.lex_state = 132}, + [987] = {.lex_state = 278}, + [988] = {.lex_state = 132}, + [989] = {.lex_state = 132}, + [990] = {.lex_state = 278}, + [991] = {.lex_state = 132}, [992] = {.lex_state = 132}, [993] = {.lex_state = 132}, - [994] = {.lex_state = 236, .external_lex_state = 2}, - [995] = {.lex_state = 268, .external_lex_state = 2}, - [996] = {.lex_state = 236, .external_lex_state = 2}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 236, .external_lex_state = 2}, - [999] = {.lex_state = 277}, - [1000] = {.lex_state = 277}, - [1001] = {.lex_state = 267}, - [1002] = {.lex_state = 132}, - [1003] = {.lex_state = 267}, - [1004] = {.lex_state = 132}, - [1005] = {.lex_state = 267}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 236, .external_lex_state = 2}, - [1009] = {.lex_state = 236, .external_lex_state = 2}, - [1010] = {.lex_state = 277}, - [1011] = {.lex_state = 267}, - [1012] = {.lex_state = 270}, - [1013] = {.lex_state = 235, .external_lex_state = 3}, - [1014] = {.lex_state = 235, .external_lex_state = 4}, - [1015] = {.lex_state = 270}, - [1016] = {.lex_state = 242, .external_lex_state = 2}, - [1017] = {.lex_state = 262}, - [1018] = {.lex_state = 270}, - [1019] = {.lex_state = 132}, - [1020] = {.lex_state = 270}, - [1021] = {.lex_state = 270}, - [1022] = {.lex_state = 265}, - [1023] = {.lex_state = 270}, - [1024] = {.lex_state = 270}, - [1025] = {.lex_state = 267}, - [1026] = {.lex_state = 256}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 270}, - [1029] = {.lex_state = 270}, - [1030] = {.lex_state = 256}, - [1031] = {.lex_state = 256}, - [1032] = {.lex_state = 134}, - [1033] = {.lex_state = 134}, - [1034] = {.lex_state = 256}, - [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 257}, - [1037] = {.lex_state = 258}, - [1038] = {.lex_state = 132}, - [1039] = {.lex_state = 132}, - [1040] = {.lex_state = 259}, - [1041] = {.lex_state = 262}, - [1042] = {.lex_state = 262}, - [1043] = {.lex_state = 262}, - [1044] = {.lex_state = 262}, - [1045] = {.lex_state = 262}, - [1046] = {.lex_state = 132}, - [1047] = {.lex_state = 132}, + [994] = {.lex_state = 279}, + [995] = {.lex_state = 236, .external_lex_state = 2}, + [996] = {.lex_state = 132}, + [997] = {.lex_state = 132}, + [998] = {.lex_state = 279}, + [999] = {.lex_state = 132}, + [1000] = {.lex_state = 235, .external_lex_state = 3}, + [1001] = {.lex_state = 235, .external_lex_state = 4}, + [1002] = {.lex_state = 280}, + [1003] = {.lex_state = 262}, + [1004] = {.lex_state = 259}, + [1005] = {.lex_state = 0}, + [1006] = {.lex_state = 270}, + [1007] = {.lex_state = 236, .external_lex_state = 2}, + [1008] = {.lex_state = 280}, + [1009] = {.lex_state = 280}, + [1010] = {.lex_state = 280}, + [1011] = {.lex_state = 132}, + [1012] = {.lex_state = 132}, + [1013] = {.lex_state = 236, .external_lex_state = 2}, + [1014] = {.lex_state = 271, .external_lex_state = 2}, + [1015] = {.lex_state = 0}, + [1016] = {.lex_state = 236, .external_lex_state = 2}, + [1017] = {.lex_state = 280}, + [1018] = {.lex_state = 291}, + [1019] = {.lex_state = 281}, + [1020] = {.lex_state = 236, .external_lex_state = 2}, + [1021] = {.lex_state = 281}, + [1022] = {.lex_state = 132}, + [1023] = {.lex_state = 132}, + [1024] = {.lex_state = 281}, + [1025] = {.lex_state = 132}, + [1026] = {.lex_state = 132}, + [1027] = {.lex_state = 281}, + [1028] = {.lex_state = 132}, + [1029] = {.lex_state = 281}, + [1030] = {.lex_state = 132}, + [1031] = {.lex_state = 132}, + [1032] = {.lex_state = 282}, + [1033] = {.lex_state = 236, .external_lex_state = 2}, + [1034] = {.lex_state = 132}, + [1035] = {.lex_state = 132}, + [1036] = {.lex_state = 282}, + [1037] = {.lex_state = 132}, + [1038] = {.lex_state = 282}, + [1039] = {.lex_state = 280}, + [1040] = {.lex_state = 132}, + [1041] = {.lex_state = 134}, + [1042] = {.lex_state = 279}, + [1043] = {.lex_state = 280}, + [1044] = {.lex_state = 132}, + [1045] = {.lex_state = 257}, + [1046] = {.lex_state = 279}, + [1047] = {.lex_state = 280}, [1048] = {.lex_state = 132}, - [1049] = {.lex_state = 278}, - [1050] = {.lex_state = 132}, + [1049] = {.lex_state = 257}, + [1050] = {.lex_state = 281}, [1051] = {.lex_state = 132}, - [1052] = {.lex_state = 278}, - [1053] = {.lex_state = 132}, - [1054] = {.lex_state = 262}, - [1055] = {.lex_state = 132}, - [1056] = {.lex_state = 262}, + [1052] = {.lex_state = 134}, + [1053] = {.lex_state = 265}, + [1054] = {.lex_state = 132}, + [1055] = {.lex_state = 265}, + [1056] = {.lex_state = 243}, [1057] = {.lex_state = 132}, - [1058] = {.lex_state = 132}, - [1059] = {.lex_state = 279}, - [1060] = {.lex_state = 236, .external_lex_state = 2}, - [1061] = {.lex_state = 132}, - [1062] = {.lex_state = 132}, - [1063] = {.lex_state = 279}, - [1064] = {.lex_state = 132}, - [1065] = {.lex_state = 280}, - [1066] = {.lex_state = 236, .external_lex_state = 2}, - [1067] = {.lex_state = 280}, - [1068] = {.lex_state = 132}, - [1069] = {.lex_state = 132}, - [1070] = {.lex_state = 280}, - [1071] = {.lex_state = 132}, - [1072] = {.lex_state = 132}, - [1073] = {.lex_state = 280}, - [1074] = {.lex_state = 132}, - [1075] = {.lex_state = 280}, - [1076] = {.lex_state = 262}, - [1077] = {.lex_state = 242, .external_lex_state = 2}, - [1078] = {.lex_state = 262}, - [1079] = {.lex_state = 132}, - [1080] = {.lex_state = 132}, - [1081] = {.lex_state = 281}, - [1082] = {.lex_state = 236, .external_lex_state = 2}, - [1083] = {.lex_state = 132}, - [1084] = {.lex_state = 132}, - [1085] = {.lex_state = 262}, - [1086] = {.lex_state = 281}, + [1058] = {.lex_state = 265}, + [1059] = {.lex_state = 236, .external_lex_state = 2}, + [1060] = {.lex_state = 274}, + [1061] = {.lex_state = 265}, + [1062] = {.lex_state = 270}, + [1063] = {.lex_state = 274}, + [1064] = {.lex_state = 274}, + [1065] = {.lex_state = 274}, + [1066] = {.lex_state = 251}, + [1067] = {.lex_state = 235, .external_lex_state = 3}, + [1068] = {.lex_state = 235, .external_lex_state = 4}, + [1069] = {.lex_state = 266}, + [1070] = {.lex_state = 132}, + [1071] = {.lex_state = 252}, + [1072] = {.lex_state = 292}, + [1073] = {.lex_state = 134}, + [1074] = {.lex_state = 134}, + [1075] = {.lex_state = 242, .external_lex_state = 2}, + [1076] = {.lex_state = 236, .external_lex_state = 2}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 236, .external_lex_state = 2}, + [1079] = {.lex_state = 236, .external_lex_state = 2}, + [1080] = {.lex_state = 292, .external_lex_state = 2}, + [1081] = {.lex_state = 292}, + [1082] = {.lex_state = 292}, + [1083] = {.lex_state = 294}, + [1084] = {.lex_state = 294}, + [1085] = {.lex_state = 294}, + [1086] = {.lex_state = 294}, [1087] = {.lex_state = 132}, - [1088] = {.lex_state = 262}, - [1089] = {.lex_state = 132}, - [1090] = {.lex_state = 281}, - [1091] = {.lex_state = 259}, - [1092] = {.lex_state = 132}, - [1093] = {.lex_state = 271}, - [1094] = {.lex_state = 235, .external_lex_state = 3}, - [1095] = {.lex_state = 235, .external_lex_state = 4}, - [1096] = {.lex_state = 271}, - [1097] = {.lex_state = 242, .external_lex_state = 2}, - [1098] = {.lex_state = 262}, - [1099] = {.lex_state = 271}, - [1100] = {.lex_state = 132}, - [1101] = {.lex_state = 271}, - [1102] = {.lex_state = 271}, - [1103] = {.lex_state = 265}, - [1104] = {.lex_state = 271}, - [1105] = {.lex_state = 271}, - [1106] = {.lex_state = 267}, - [1107] = {.lex_state = 259}, - [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 271}, - [1110] = {.lex_state = 271}, - [1111] = {.lex_state = 262}, - [1112] = {.lex_state = 262}, - [1113] = {.lex_state = 259}, - [1114] = {.lex_state = 259}, - [1115] = {.lex_state = 259}, - [1116] = {.lex_state = 264}, - [1117] = {.lex_state = 267}, - [1118] = {.lex_state = 256}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 236, .external_lex_state = 2}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 272}, - [1123] = {.lex_state = 265}, - [1124] = {.lex_state = 272}, - [1125] = {.lex_state = 272}, - [1126] = {.lex_state = 272}, - [1127] = {.lex_state = 273}, - [1128] = {.lex_state = 265}, - [1129] = {.lex_state = 274}, - [1130] = {.lex_state = 273}, - [1131] = {.lex_state = 273}, - [1132] = {.lex_state = 273}, - [1133] = {.lex_state = 274}, - [1134] = {.lex_state = 235, .external_lex_state = 3}, - [1135] = {.lex_state = 235, .external_lex_state = 4}, - [1136] = {.lex_state = 274}, - [1137] = {.lex_state = 242, .external_lex_state = 2}, - [1138] = {.lex_state = 262}, - [1139] = {.lex_state = 274}, - [1140] = {.lex_state = 132}, - [1141] = {.lex_state = 283}, - [1142] = {.lex_state = 134}, - [1143] = {.lex_state = 134}, - [1144] = {.lex_state = 242, .external_lex_state = 2}, - [1145] = {.lex_state = 236, .external_lex_state = 2}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 236, .external_lex_state = 2}, - [1148] = {.lex_state = 236, .external_lex_state = 2}, - [1149] = {.lex_state = 283, .external_lex_state = 2}, - [1150] = {.lex_state = 283}, - [1151] = {.lex_state = 283}, - [1152] = {.lex_state = 274}, - [1153] = {.lex_state = 265}, - [1154] = {.lex_state = 274}, - [1155] = {.lex_state = 274}, - [1156] = {.lex_state = 267}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 274}, - [1159] = {.lex_state = 274}, - [1160] = {.lex_state = 274}, - [1161] = {.lex_state = 275}, - [1162] = {.lex_state = 265}, - [1163] = {.lex_state = 275}, - [1164] = {.lex_state = 275}, - [1165] = {.lex_state = 275}, - [1166] = {.lex_state = 276}, - [1167] = {.lex_state = 265}, - [1168] = {.lex_state = 274}, - [1169] = {.lex_state = 276}, - [1170] = {.lex_state = 276}, - [1171] = {.lex_state = 276}, - [1172] = {.lex_state = 236, .external_lex_state = 2}, - [1173] = {.lex_state = 276}, - [1174] = {.lex_state = 134}, + [1088] = {.lex_state = 132}, + [1089] = {.lex_state = 297}, + [1090] = {.lex_state = 134}, + [1091] = {.lex_state = 134}, + [1092] = {.lex_state = 242, .external_lex_state = 2}, + [1093] = {.lex_state = 236, .external_lex_state = 2}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 236, .external_lex_state = 2}, + [1096] = {.lex_state = 236, .external_lex_state = 2}, + [1097] = {.lex_state = 297, .external_lex_state = 2}, + [1098] = {.lex_state = 297}, + [1099] = {.lex_state = 297}, + [1100] = {.lex_state = 236, .external_lex_state = 2}, + [1101] = {.lex_state = 256}, + [1102] = {.lex_state = 270}, + [1103] = {.lex_state = 270}, + [1104] = {.lex_state = 242, .external_lex_state = 2}, + [1105] = {.lex_state = 270}, + [1106] = {.lex_state = 235, .external_lex_state = 3}, + [1107] = {.lex_state = 235, .external_lex_state = 4}, + [1108] = {.lex_state = 283}, + [1109] = {.lex_state = 262}, + [1110] = {.lex_state = 259}, + [1111] = {.lex_state = 0}, + [1112] = {.lex_state = 270}, + [1113] = {.lex_state = 236, .external_lex_state = 2}, + [1114] = {.lex_state = 283}, + [1115] = {.lex_state = 283}, + [1116] = {.lex_state = 283}, + [1117] = {.lex_state = 132}, + [1118] = {.lex_state = 132}, + [1119] = {.lex_state = 236, .external_lex_state = 2}, + [1120] = {.lex_state = 271, .external_lex_state = 2}, + [1121] = {.lex_state = 236, .external_lex_state = 2}, + [1122] = {.lex_state = 0}, + [1123] = {.lex_state = 236, .external_lex_state = 2}, + [1124] = {.lex_state = 283}, + [1125] = {.lex_state = 299}, + [1126] = {.lex_state = 270}, + [1127] = {.lex_state = 132}, + [1128] = {.lex_state = 275}, + [1129] = {.lex_state = 132}, + [1130] = {.lex_state = 270}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 236, .external_lex_state = 2}, + [1133] = {.lex_state = 236, .external_lex_state = 2}, + [1134] = {.lex_state = 283}, + [1135] = {.lex_state = 270}, + [1136] = {.lex_state = 276}, + [1137] = {.lex_state = 235, .external_lex_state = 3}, + [1138] = {.lex_state = 235, .external_lex_state = 4}, + [1139] = {.lex_state = 276}, + [1140] = {.lex_state = 242, .external_lex_state = 2}, + [1141] = {.lex_state = 262}, + [1142] = {.lex_state = 276}, + [1143] = {.lex_state = 276}, + [1144] = {.lex_state = 132}, + [1145] = {.lex_state = 276}, + [1146] = {.lex_state = 276}, + [1147] = {.lex_state = 265}, + [1148] = {.lex_state = 276}, + [1149] = {.lex_state = 284}, + [1150] = {.lex_state = 270}, + [1151] = {.lex_state = 256}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 276}, + [1154] = {.lex_state = 276}, + [1155] = {.lex_state = 276}, + [1156] = {.lex_state = 256}, + [1157] = {.lex_state = 272}, + [1158] = {.lex_state = 257}, + [1159] = {.lex_state = 258}, + [1160] = {.lex_state = 132}, + [1161] = {.lex_state = 132}, + [1162] = {.lex_state = 259}, + [1163] = {.lex_state = 262}, + [1164] = {.lex_state = 262}, + [1165] = {.lex_state = 262}, + [1166] = {.lex_state = 262}, + [1167] = {.lex_state = 262}, + [1168] = {.lex_state = 132}, + [1169] = {.lex_state = 132}, + [1170] = {.lex_state = 132}, + [1171] = {.lex_state = 285}, + [1172] = {.lex_state = 132}, + [1173] = {.lex_state = 132}, + [1174] = {.lex_state = 285}, [1175] = {.lex_state = 132}, - [1176] = {.lex_state = 265}, - [1177] = {.lex_state = 267}, - [1178] = {.lex_state = 269}, + [1176] = {.lex_state = 262}, + [1177] = {.lex_state = 132}, + [1178] = {.lex_state = 262}, [1179] = {.lex_state = 132}, - [1180] = {.lex_state = 266}, - [1181] = {.lex_state = 267}, - [1182] = {.lex_state = 277}, - [1183] = {.lex_state = 235, .external_lex_state = 3}, - [1184] = {.lex_state = 235, .external_lex_state = 4}, - [1185] = {.lex_state = 277}, - [1186] = {.lex_state = 242, .external_lex_state = 2}, - [1187] = {.lex_state = 262}, - [1188] = {.lex_state = 277}, - [1189] = {.lex_state = 132}, - [1190] = {.lex_state = 277}, - [1191] = {.lex_state = 277}, - [1192] = {.lex_state = 265}, - [1193] = {.lex_state = 277}, - [1194] = {.lex_state = 277}, - [1195] = {.lex_state = 267}, - [1196] = {.lex_state = 267}, - [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 277}, - [1199] = {.lex_state = 277}, - [1200] = {.lex_state = 267}, - [1201] = {.lex_state = 267}, - [1202] = {.lex_state = 267}, - [1203] = {.lex_state = 236, .external_lex_state = 2}, + [1180] = {.lex_state = 132}, + [1181] = {.lex_state = 286}, + [1182] = {.lex_state = 236, .external_lex_state = 2}, + [1183] = {.lex_state = 132}, + [1184] = {.lex_state = 132}, + [1185] = {.lex_state = 286}, + [1186] = {.lex_state = 132}, + [1187] = {.lex_state = 287}, + [1188] = {.lex_state = 236, .external_lex_state = 2}, + [1189] = {.lex_state = 287}, + [1190] = {.lex_state = 132}, + [1191] = {.lex_state = 132}, + [1192] = {.lex_state = 287}, + [1193] = {.lex_state = 132}, + [1194] = {.lex_state = 132}, + [1195] = {.lex_state = 287}, + [1196] = {.lex_state = 132}, + [1197] = {.lex_state = 287}, + [1198] = {.lex_state = 262}, + [1199] = {.lex_state = 242, .external_lex_state = 2}, + [1200] = {.lex_state = 262}, + [1201] = {.lex_state = 132}, + [1202] = {.lex_state = 132}, + [1203] = {.lex_state = 288}, [1204] = {.lex_state = 236, .external_lex_state = 2}, - [1205] = {.lex_state = 236, .external_lex_state = 2}, - [1206] = {.lex_state = 236, .external_lex_state = 2}, - [1207] = {.lex_state = 270}, - [1208] = {.lex_state = 270}, - [1209] = {.lex_state = 242, .external_lex_state = 2}, - [1210] = {.lex_state = 270}, - [1211] = {.lex_state = 236, .external_lex_state = 2}, - [1212] = {.lex_state = 270}, - [1213] = {.lex_state = 132}, - [1214] = {.lex_state = 270}, - [1215] = {.lex_state = 132}, - [1216] = {.lex_state = 270}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 236, .external_lex_state = 2}, - [1219] = {.lex_state = 132}, - [1220] = {.lex_state = 236, .external_lex_state = 2}, - [1221] = {.lex_state = 132}, - [1222] = {.lex_state = 262}, + [1205] = {.lex_state = 132}, + [1206] = {.lex_state = 132}, + [1207] = {.lex_state = 262}, + [1208] = {.lex_state = 288}, + [1209] = {.lex_state = 132}, + [1210] = {.lex_state = 262}, + [1211] = {.lex_state = 132}, + [1212] = {.lex_state = 288}, + [1213] = {.lex_state = 259}, + [1214] = {.lex_state = 132}, + [1215] = {.lex_state = 277}, + [1216] = {.lex_state = 235, .external_lex_state = 3}, + [1217] = {.lex_state = 235, .external_lex_state = 4}, + [1218] = {.lex_state = 277}, + [1219] = {.lex_state = 242, .external_lex_state = 2}, + [1220] = {.lex_state = 262}, + [1221] = {.lex_state = 277}, + [1222] = {.lex_state = 277}, [1223] = {.lex_state = 132}, - [1224] = {.lex_state = 262}, - [1225] = {.lex_state = 262}, - [1226] = {.lex_state = 262}, - [1227] = {.lex_state = 278}, - [1228] = {.lex_state = 265}, - [1229] = {.lex_state = 278}, - [1230] = {.lex_state = 278}, - [1231] = {.lex_state = 278}, - [1232] = {.lex_state = 262}, - [1233] = {.lex_state = 279}, - [1234] = {.lex_state = 265}, - [1235] = {.lex_state = 259}, - [1236] = {.lex_state = 279}, - [1237] = {.lex_state = 279}, - [1238] = {.lex_state = 279}, - [1239] = {.lex_state = 259}, - [1240] = {.lex_state = 280}, - [1241] = {.lex_state = 265}, - [1242] = {.lex_state = 280}, - [1243] = {.lex_state = 280}, - [1244] = {.lex_state = 280}, - [1245] = {.lex_state = 262}, - [1246] = {.lex_state = 242, .external_lex_state = 2}, - [1247] = {.lex_state = 281}, - [1248] = {.lex_state = 265}, - [1249] = {.lex_state = 259}, - [1250] = {.lex_state = 281}, - [1251] = {.lex_state = 281}, - [1252] = {.lex_state = 281}, - [1253] = {.lex_state = 262}, - [1254] = {.lex_state = 236, .external_lex_state = 2}, - [1255] = {.lex_state = 262}, - [1256] = {.lex_state = 281}, - [1257] = {.lex_state = 271}, - [1258] = {.lex_state = 271}, - [1259] = {.lex_state = 242, .external_lex_state = 2}, - [1260] = {.lex_state = 271}, - [1261] = {.lex_state = 236, .external_lex_state = 2}, - [1262] = {.lex_state = 271}, - [1263] = {.lex_state = 132}, - [1264] = {.lex_state = 271}, - [1265] = {.lex_state = 132}, - [1266] = {.lex_state = 271}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 262}, - [1269] = {.lex_state = 132}, - [1270] = {.lex_state = 256}, - [1271] = {.lex_state = 272}, - [1272] = {.lex_state = 132}, - [1273] = {.lex_state = 273}, + [1224] = {.lex_state = 277}, + [1225] = {.lex_state = 277}, + [1226] = {.lex_state = 265}, + [1227] = {.lex_state = 277}, + [1228] = {.lex_state = 289}, + [1229] = {.lex_state = 270}, + [1230] = {.lex_state = 259}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 277}, + [1233] = {.lex_state = 277}, + [1234] = {.lex_state = 277}, + [1235] = {.lex_state = 262}, + [1236] = {.lex_state = 286}, + [1237] = {.lex_state = 259}, + [1238] = {.lex_state = 132}, + [1239] = {.lex_state = 257}, + [1240] = {.lex_state = 286}, + [1241] = {.lex_state = 259}, + [1242] = {.lex_state = 132}, + [1243] = {.lex_state = 257}, + [1244] = {.lex_state = 287}, + [1245] = {.lex_state = 132}, + [1246] = {.lex_state = 262}, + [1247] = {.lex_state = 259}, + [1248] = {.lex_state = 273}, + [1249] = {.lex_state = 264}, + [1250] = {.lex_state = 270}, + [1251] = {.lex_state = 256}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 236, .external_lex_state = 2}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 278}, + [1256] = {.lex_state = 265}, + [1257] = {.lex_state = 278}, + [1258] = {.lex_state = 278}, + [1259] = {.lex_state = 278}, + [1260] = {.lex_state = 279}, + [1261] = {.lex_state = 265}, + [1262] = {.lex_state = 280}, + [1263] = {.lex_state = 279}, + [1264] = {.lex_state = 279}, + [1265] = {.lex_state = 279}, + [1266] = {.lex_state = 280}, + [1267] = {.lex_state = 235, .external_lex_state = 3}, + [1268] = {.lex_state = 235, .external_lex_state = 4}, + [1269] = {.lex_state = 280}, + [1270] = {.lex_state = 242, .external_lex_state = 2}, + [1271] = {.lex_state = 262}, + [1272] = {.lex_state = 280}, + [1273] = {.lex_state = 280}, [1274] = {.lex_state = 132}, - [1275] = {.lex_state = 274}, - [1276] = {.lex_state = 274}, - [1277] = {.lex_state = 242, .external_lex_state = 2}, - [1278] = {.lex_state = 274}, - [1279] = {.lex_state = 235, .external_lex_state = 3}, - [1280] = {.lex_state = 235, .external_lex_state = 4}, - [1281] = {.lex_state = 283}, - [1282] = {.lex_state = 262}, - [1283] = {.lex_state = 259}, - [1284] = {.lex_state = 267}, - [1285] = {.lex_state = 236, .external_lex_state = 2}, - [1286] = {.lex_state = 283}, - [1287] = {.lex_state = 283}, - [1288] = {.lex_state = 283}, - [1289] = {.lex_state = 132}, - [1290] = {.lex_state = 132}, - [1291] = {.lex_state = 236, .external_lex_state = 2}, - [1292] = {.lex_state = 268, .external_lex_state = 2}, - [1293] = {.lex_state = 236, .external_lex_state = 2}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 236, .external_lex_state = 2}, - [1296] = {.lex_state = 283}, - [1297] = {.lex_state = 283}, - [1298] = {.lex_state = 274}, - [1299] = {.lex_state = 132}, - [1300] = {.lex_state = 274}, - [1301] = {.lex_state = 132}, - [1302] = {.lex_state = 274}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 275}, - [1305] = {.lex_state = 132}, - [1306] = {.lex_state = 276}, - [1307] = {.lex_state = 132}, - [1308] = {.lex_state = 274}, - [1309] = {.lex_state = 236, .external_lex_state = 2}, - [1310] = {.lex_state = 276}, - [1311] = {.lex_state = 269}, - [1312] = {.lex_state = 277}, - [1313] = {.lex_state = 277}, - [1314] = {.lex_state = 242, .external_lex_state = 2}, - [1315] = {.lex_state = 277}, - [1316] = {.lex_state = 236, .external_lex_state = 2}, - [1317] = {.lex_state = 277}, - [1318] = {.lex_state = 132}, - [1319] = {.lex_state = 277}, - [1320] = {.lex_state = 132}, - [1321] = {.lex_state = 277}, - [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 277}, - [1324] = {.lex_state = 277}, - [1325] = {.lex_state = 267}, - [1326] = {.lex_state = 270}, + [1275] = {.lex_state = 300}, + [1276] = {.lex_state = 134}, + [1277] = {.lex_state = 134}, + [1278] = {.lex_state = 242, .external_lex_state = 2}, + [1279] = {.lex_state = 236, .external_lex_state = 2}, + [1280] = {.lex_state = 0}, + [1281] = {.lex_state = 236, .external_lex_state = 2}, + [1282] = {.lex_state = 236, .external_lex_state = 2}, + [1283] = {.lex_state = 300, .external_lex_state = 2}, + [1284] = {.lex_state = 300}, + [1285] = {.lex_state = 300}, + [1286] = {.lex_state = 280}, + [1287] = {.lex_state = 265}, + [1288] = {.lex_state = 280}, + [1289] = {.lex_state = 291}, + [1290] = {.lex_state = 270}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 280}, + [1293] = {.lex_state = 280}, + [1294] = {.lex_state = 280}, + [1295] = {.lex_state = 280}, + [1296] = {.lex_state = 281}, + [1297] = {.lex_state = 265}, + [1298] = {.lex_state = 281}, + [1299] = {.lex_state = 281}, + [1300] = {.lex_state = 281}, + [1301] = {.lex_state = 282}, + [1302] = {.lex_state = 265}, + [1303] = {.lex_state = 280}, + [1304] = {.lex_state = 282}, + [1305] = {.lex_state = 282}, + [1306] = {.lex_state = 282}, + [1307] = {.lex_state = 236, .external_lex_state = 2}, + [1308] = {.lex_state = 282}, + [1309] = {.lex_state = 134}, + [1310] = {.lex_state = 236, .external_lex_state = 2}, + [1311] = {.lex_state = 281}, + [1312] = {.lex_state = 236, .external_lex_state = 2}, + [1313] = {.lex_state = 281}, + [1314] = {.lex_state = 281}, + [1315] = {.lex_state = 132}, + [1316] = {.lex_state = 265}, + [1317] = {.lex_state = 270}, + [1318] = {.lex_state = 274}, + [1319] = {.lex_state = 132}, + [1320] = {.lex_state = 266}, + [1321] = {.lex_state = 235, .external_lex_state = 3}, + [1322] = {.lex_state = 235, .external_lex_state = 4}, + [1323] = {.lex_state = 292}, + [1324] = {.lex_state = 262}, + [1325] = {.lex_state = 259}, + [1326] = {.lex_state = 0}, [1327] = {.lex_state = 270}, - [1328] = {.lex_state = 270}, - [1329] = {.lex_state = 270}, - [1330] = {.lex_state = 270}, - [1331] = {.lex_state = 284}, - [1332] = {.lex_state = 134}, - [1333] = {.lex_state = 134}, - [1334] = {.lex_state = 242, .external_lex_state = 2}, - [1335] = {.lex_state = 236, .external_lex_state = 2}, + [1328] = {.lex_state = 236, .external_lex_state = 2}, + [1329] = {.lex_state = 292}, + [1330] = {.lex_state = 292}, + [1331] = {.lex_state = 292}, + [1332] = {.lex_state = 132}, + [1333] = {.lex_state = 132}, + [1334] = {.lex_state = 236, .external_lex_state = 2}, + [1335] = {.lex_state = 271, .external_lex_state = 2}, [1336] = {.lex_state = 0}, [1337] = {.lex_state = 236, .external_lex_state = 2}, - [1338] = {.lex_state = 236, .external_lex_state = 2}, - [1339] = {.lex_state = 284, .external_lex_state = 2}, - [1340] = {.lex_state = 284}, - [1341] = {.lex_state = 284}, - [1342] = {.lex_state = 286}, - [1343] = {.lex_state = 286}, - [1344] = {.lex_state = 286}, - [1345] = {.lex_state = 286}, + [1338] = {.lex_state = 292}, + [1339] = {.lex_state = 301}, + [1340] = {.lex_state = 132}, + [1341] = {.lex_state = 132}, + [1342] = {.lex_state = 294}, + [1343] = {.lex_state = 132}, + [1344] = {.lex_state = 132}, + [1345] = {.lex_state = 294}, [1346] = {.lex_state = 132}, - [1347] = {.lex_state = 132}, - [1348] = {.lex_state = 289}, - [1349] = {.lex_state = 134}, - [1350] = {.lex_state = 134}, - [1351] = {.lex_state = 242, .external_lex_state = 2}, - [1352] = {.lex_state = 236, .external_lex_state = 2}, - [1353] = {.lex_state = 0}, + [1347] = {.lex_state = 235, .external_lex_state = 3}, + [1348] = {.lex_state = 235, .external_lex_state = 4}, + [1349] = {.lex_state = 297}, + [1350] = {.lex_state = 262}, + [1351] = {.lex_state = 259}, + [1352] = {.lex_state = 0}, + [1353] = {.lex_state = 270}, [1354] = {.lex_state = 236, .external_lex_state = 2}, - [1355] = {.lex_state = 236, .external_lex_state = 2}, - [1356] = {.lex_state = 289, .external_lex_state = 2}, - [1357] = {.lex_state = 289}, - [1358] = {.lex_state = 289}, - [1359] = {.lex_state = 236, .external_lex_state = 2}, - [1360] = {.lex_state = 262}, - [1361] = {.lex_state = 262}, - [1362] = {.lex_state = 278}, - [1363] = {.lex_state = 132}, - [1364] = {.lex_state = 279}, - [1365] = {.lex_state = 132}, - [1366] = {.lex_state = 280}, - [1367] = {.lex_state = 132}, - [1368] = {.lex_state = 262}, - [1369] = {.lex_state = 281}, - [1370] = {.lex_state = 132}, - [1371] = {.lex_state = 259}, - [1372] = {.lex_state = 236, .external_lex_state = 2}, + [1355] = {.lex_state = 297}, + [1356] = {.lex_state = 297}, + [1357] = {.lex_state = 297}, + [1358] = {.lex_state = 132}, + [1359] = {.lex_state = 132}, + [1360] = {.lex_state = 236, .external_lex_state = 2}, + [1361] = {.lex_state = 271, .external_lex_state = 2}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 236, .external_lex_state = 2}, + [1364] = {.lex_state = 297}, + [1365] = {.lex_state = 302}, + [1366] = {.lex_state = 292}, + [1367] = {.lex_state = 270}, + [1368] = {.lex_state = 283}, + [1369] = {.lex_state = 235, .external_lex_state = 3}, + [1370] = {.lex_state = 235, .external_lex_state = 4}, + [1371] = {.lex_state = 283}, + [1372] = {.lex_state = 242, .external_lex_state = 2}, [1373] = {.lex_state = 262}, - [1374] = {.lex_state = 271}, - [1375] = {.lex_state = 271}, - [1376] = {.lex_state = 271}, - [1377] = {.lex_state = 271}, - [1378] = {.lex_state = 271}, - [1379] = {.lex_state = 262}, - [1380] = {.lex_state = 281}, - [1381] = {.lex_state = 272}, - [1382] = {.lex_state = 273}, - [1383] = {.lex_state = 274}, - [1384] = {.lex_state = 283}, - [1385] = {.lex_state = 235, .external_lex_state = 3}, - [1386] = {.lex_state = 235, .external_lex_state = 4}, + [1374] = {.lex_state = 283}, + [1375] = {.lex_state = 283}, + [1376] = {.lex_state = 132}, + [1377] = {.lex_state = 283}, + [1378] = {.lex_state = 283}, + [1379] = {.lex_state = 265}, + [1380] = {.lex_state = 283}, + [1381] = {.lex_state = 299}, + [1382] = {.lex_state = 270}, + [1383] = {.lex_state = 270}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 283}, + [1386] = {.lex_state = 283}, [1387] = {.lex_state = 283}, - [1388] = {.lex_state = 242, .external_lex_state = 2}, - [1389] = {.lex_state = 262}, - [1390] = {.lex_state = 283}, - [1391] = {.lex_state = 132}, - [1392] = {.lex_state = 283}, - [1393] = {.lex_state = 283}, - [1394] = {.lex_state = 265}, - [1395] = {.lex_state = 283}, - [1396] = {.lex_state = 283}, - [1397] = {.lex_state = 267}, - [1398] = {.lex_state = 274}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 283}, - [1401] = {.lex_state = 283}, - [1402] = {.lex_state = 274}, - [1403] = {.lex_state = 274}, - [1404] = {.lex_state = 274}, - [1405] = {.lex_state = 275}, - [1406] = {.lex_state = 276}, - [1407] = {.lex_state = 274}, - [1408] = {.lex_state = 236, .external_lex_state = 2}, - [1409] = {.lex_state = 277}, - [1410] = {.lex_state = 277}, - [1411] = {.lex_state = 277}, - [1412] = {.lex_state = 277}, - [1413] = {.lex_state = 277}, - [1414] = {.lex_state = 236, .external_lex_state = 2}, - [1415] = {.lex_state = 235, .external_lex_state = 3}, - [1416] = {.lex_state = 235, .external_lex_state = 4}, - [1417] = {.lex_state = 284}, - [1418] = {.lex_state = 262}, - [1419] = {.lex_state = 259}, - [1420] = {.lex_state = 267}, - [1421] = {.lex_state = 236, .external_lex_state = 2}, - [1422] = {.lex_state = 284}, - [1423] = {.lex_state = 284}, - [1424] = {.lex_state = 284}, - [1425] = {.lex_state = 132}, - [1426] = {.lex_state = 132}, - [1427] = {.lex_state = 236, .external_lex_state = 2}, - [1428] = {.lex_state = 268, .external_lex_state = 2}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 236, .external_lex_state = 2}, - [1431] = {.lex_state = 284}, - [1432] = {.lex_state = 284}, - [1433] = {.lex_state = 132}, - [1434] = {.lex_state = 132}, - [1435] = {.lex_state = 286}, - [1436] = {.lex_state = 132}, - [1437] = {.lex_state = 132}, - [1438] = {.lex_state = 286}, - [1439] = {.lex_state = 132}, - [1440] = {.lex_state = 235, .external_lex_state = 3}, - [1441] = {.lex_state = 235, .external_lex_state = 4}, - [1442] = {.lex_state = 289}, - [1443] = {.lex_state = 262}, - [1444] = {.lex_state = 259}, - [1445] = {.lex_state = 267}, - [1446] = {.lex_state = 236, .external_lex_state = 2}, - [1447] = {.lex_state = 289}, - [1448] = {.lex_state = 289}, - [1449] = {.lex_state = 289}, - [1450] = {.lex_state = 132}, - [1451] = {.lex_state = 132}, + [1388] = {.lex_state = 270}, + [1389] = {.lex_state = 275}, + [1390] = {.lex_state = 236, .external_lex_state = 2}, + [1391] = {.lex_state = 236, .external_lex_state = 2}, + [1392] = {.lex_state = 236, .external_lex_state = 2}, + [1393] = {.lex_state = 236, .external_lex_state = 2}, + [1394] = {.lex_state = 276}, + [1395] = {.lex_state = 276}, + [1396] = {.lex_state = 242, .external_lex_state = 2}, + [1397] = {.lex_state = 276}, + [1398] = {.lex_state = 236, .external_lex_state = 2}, + [1399] = {.lex_state = 276}, + [1400] = {.lex_state = 132}, + [1401] = {.lex_state = 284}, + [1402] = {.lex_state = 132}, + [1403] = {.lex_state = 276}, + [1404] = {.lex_state = 262}, + [1405] = {.lex_state = 132}, + [1406] = {.lex_state = 262}, + [1407] = {.lex_state = 262}, + [1408] = {.lex_state = 262}, + [1409] = {.lex_state = 285}, + [1410] = {.lex_state = 265}, + [1411] = {.lex_state = 285}, + [1412] = {.lex_state = 285}, + [1413] = {.lex_state = 285}, + [1414] = {.lex_state = 262}, + [1415] = {.lex_state = 286}, + [1416] = {.lex_state = 265}, + [1417] = {.lex_state = 259}, + [1418] = {.lex_state = 286}, + [1419] = {.lex_state = 286}, + [1420] = {.lex_state = 286}, + [1421] = {.lex_state = 259}, + [1422] = {.lex_state = 287}, + [1423] = {.lex_state = 265}, + [1424] = {.lex_state = 287}, + [1425] = {.lex_state = 287}, + [1426] = {.lex_state = 287}, + [1427] = {.lex_state = 262}, + [1428] = {.lex_state = 242, .external_lex_state = 2}, + [1429] = {.lex_state = 288}, + [1430] = {.lex_state = 265}, + [1431] = {.lex_state = 259}, + [1432] = {.lex_state = 288}, + [1433] = {.lex_state = 288}, + [1434] = {.lex_state = 288}, + [1435] = {.lex_state = 262}, + [1436] = {.lex_state = 236, .external_lex_state = 2}, + [1437] = {.lex_state = 262}, + [1438] = {.lex_state = 288}, + [1439] = {.lex_state = 277}, + [1440] = {.lex_state = 277}, + [1441] = {.lex_state = 242, .external_lex_state = 2}, + [1442] = {.lex_state = 277}, + [1443] = {.lex_state = 236, .external_lex_state = 2}, + [1444] = {.lex_state = 277}, + [1445] = {.lex_state = 132}, + [1446] = {.lex_state = 289}, + [1447] = {.lex_state = 132}, + [1448] = {.lex_state = 277}, + [1449] = {.lex_state = 262}, + [1450] = {.lex_state = 236, .external_lex_state = 2}, + [1451] = {.lex_state = 287}, [1452] = {.lex_state = 236, .external_lex_state = 2}, - [1453] = {.lex_state = 268, .external_lex_state = 2}, - [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 236, .external_lex_state = 2}, - [1456] = {.lex_state = 289}, - [1457] = {.lex_state = 289}, - [1458] = {.lex_state = 284}, - [1459] = {.lex_state = 278}, - [1460] = {.lex_state = 279}, + [1453] = {.lex_state = 287}, + [1454] = {.lex_state = 287}, + [1455] = {.lex_state = 132}, + [1456] = {.lex_state = 256}, + [1457] = {.lex_state = 278}, + [1458] = {.lex_state = 132}, + [1459] = {.lex_state = 279}, + [1460] = {.lex_state = 132}, [1461] = {.lex_state = 280}, - [1462] = {.lex_state = 281}, - [1463] = {.lex_state = 259}, - [1464] = {.lex_state = 262}, - [1465] = {.lex_state = 236, .external_lex_state = 2}, - [1466] = {.lex_state = 262}, - [1467] = {.lex_state = 283}, - [1468] = {.lex_state = 283}, - [1469] = {.lex_state = 242, .external_lex_state = 2}, - [1470] = {.lex_state = 283}, - [1471] = {.lex_state = 236, .external_lex_state = 2}, - [1472] = {.lex_state = 283}, - [1473] = {.lex_state = 132}, - [1474] = {.lex_state = 283}, - [1475] = {.lex_state = 132}, - [1476] = {.lex_state = 283}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 274}, - [1479] = {.lex_state = 277}, - [1480] = {.lex_state = 284}, - [1481] = {.lex_state = 235, .external_lex_state = 3}, - [1482] = {.lex_state = 235, .external_lex_state = 4}, - [1483] = {.lex_state = 284}, - [1484] = {.lex_state = 242, .external_lex_state = 2}, - [1485] = {.lex_state = 262}, - [1486] = {.lex_state = 284}, - [1487] = {.lex_state = 132}, - [1488] = {.lex_state = 291}, - [1489] = {.lex_state = 134}, - [1490] = {.lex_state = 134}, - [1491] = {.lex_state = 242, .external_lex_state = 2}, - [1492] = {.lex_state = 236, .external_lex_state = 2}, - [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 236, .external_lex_state = 2}, + [1462] = {.lex_state = 280}, + [1463] = {.lex_state = 242, .external_lex_state = 2}, + [1464] = {.lex_state = 280}, + [1465] = {.lex_state = 235, .external_lex_state = 3}, + [1466] = {.lex_state = 235, .external_lex_state = 4}, + [1467] = {.lex_state = 300}, + [1468] = {.lex_state = 262}, + [1469] = {.lex_state = 259}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 270}, + [1472] = {.lex_state = 236, .external_lex_state = 2}, + [1473] = {.lex_state = 300}, + [1474] = {.lex_state = 300}, + [1475] = {.lex_state = 300}, + [1476] = {.lex_state = 132}, + [1477] = {.lex_state = 132}, + [1478] = {.lex_state = 236, .external_lex_state = 2}, + [1479] = {.lex_state = 271, .external_lex_state = 2}, + [1480] = {.lex_state = 236, .external_lex_state = 2}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 236, .external_lex_state = 2}, + [1483] = {.lex_state = 300}, + [1484] = {.lex_state = 303}, + [1485] = {.lex_state = 280}, + [1486] = {.lex_state = 132}, + [1487] = {.lex_state = 291}, + [1488] = {.lex_state = 132}, + [1489] = {.lex_state = 280}, + [1490] = {.lex_state = 281}, + [1491] = {.lex_state = 132}, + [1492] = {.lex_state = 282}, + [1493] = {.lex_state = 132}, + [1494] = {.lex_state = 280}, [1495] = {.lex_state = 236, .external_lex_state = 2}, - [1496] = {.lex_state = 291, .external_lex_state = 2}, - [1497] = {.lex_state = 291}, - [1498] = {.lex_state = 291}, - [1499] = {.lex_state = 284}, - [1500] = {.lex_state = 265}, - [1501] = {.lex_state = 284}, - [1502] = {.lex_state = 284}, - [1503] = {.lex_state = 267}, - [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 284}, - [1506] = {.lex_state = 284}, - [1507] = {.lex_state = 286}, - [1508] = {.lex_state = 265}, - [1509] = {.lex_state = 286}, - [1510] = {.lex_state = 286}, - [1511] = {.lex_state = 286}, - [1512] = {.lex_state = 289}, - [1513] = {.lex_state = 235, .external_lex_state = 3}, - [1514] = {.lex_state = 235, .external_lex_state = 4}, - [1515] = {.lex_state = 289}, - [1516] = {.lex_state = 242, .external_lex_state = 2}, - [1517] = {.lex_state = 262}, - [1518] = {.lex_state = 289}, - [1519] = {.lex_state = 132}, + [1496] = {.lex_state = 280}, + [1497] = {.lex_state = 280}, + [1498] = {.lex_state = 282}, + [1499] = {.lex_state = 274}, + [1500] = {.lex_state = 292}, + [1501] = {.lex_state = 235, .external_lex_state = 3}, + [1502] = {.lex_state = 235, .external_lex_state = 4}, + [1503] = {.lex_state = 292}, + [1504] = {.lex_state = 242, .external_lex_state = 2}, + [1505] = {.lex_state = 262}, + [1506] = {.lex_state = 292}, + [1507] = {.lex_state = 292}, + [1508] = {.lex_state = 132}, + [1509] = {.lex_state = 304}, + [1510] = {.lex_state = 134}, + [1511] = {.lex_state = 134}, + [1512] = {.lex_state = 242, .external_lex_state = 2}, + [1513] = {.lex_state = 236, .external_lex_state = 2}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 236, .external_lex_state = 2}, + [1516] = {.lex_state = 236, .external_lex_state = 2}, + [1517] = {.lex_state = 304, .external_lex_state = 2}, + [1518] = {.lex_state = 304}, + [1519] = {.lex_state = 304}, [1520] = {.lex_state = 292}, - [1521] = {.lex_state = 134}, - [1522] = {.lex_state = 134}, - [1523] = {.lex_state = 242, .external_lex_state = 2}, - [1524] = {.lex_state = 236, .external_lex_state = 2}, + [1521] = {.lex_state = 265}, + [1522] = {.lex_state = 292}, + [1523] = {.lex_state = 301}, + [1524] = {.lex_state = 270}, [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 236, .external_lex_state = 2}, - [1527] = {.lex_state = 236, .external_lex_state = 2}, - [1528] = {.lex_state = 292, .external_lex_state = 2}, - [1529] = {.lex_state = 292}, - [1530] = {.lex_state = 292}, - [1531] = {.lex_state = 289}, - [1532] = {.lex_state = 265}, - [1533] = {.lex_state = 289}, - [1534] = {.lex_state = 289}, - [1535] = {.lex_state = 267}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 289}, - [1538] = {.lex_state = 289}, - [1539] = {.lex_state = 259}, - [1540] = {.lex_state = 283}, - [1541] = {.lex_state = 283}, - [1542] = {.lex_state = 283}, - [1543] = {.lex_state = 283}, - [1544] = {.lex_state = 283}, - [1545] = {.lex_state = 284}, - [1546] = {.lex_state = 284}, - [1547] = {.lex_state = 242, .external_lex_state = 2}, - [1548] = {.lex_state = 284}, - [1549] = {.lex_state = 235, .external_lex_state = 3}, - [1550] = {.lex_state = 235, .external_lex_state = 4}, - [1551] = {.lex_state = 291}, - [1552] = {.lex_state = 262}, - [1553] = {.lex_state = 259}, - [1554] = {.lex_state = 267}, - [1555] = {.lex_state = 236, .external_lex_state = 2}, - [1556] = {.lex_state = 291}, - [1557] = {.lex_state = 291}, - [1558] = {.lex_state = 291}, - [1559] = {.lex_state = 132}, - [1560] = {.lex_state = 132}, - [1561] = {.lex_state = 236, .external_lex_state = 2}, - [1562] = {.lex_state = 268, .external_lex_state = 2}, - [1563] = {.lex_state = 236, .external_lex_state = 2}, - [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 236, .external_lex_state = 2}, - [1566] = {.lex_state = 291}, - [1567] = {.lex_state = 291}, - [1568] = {.lex_state = 284}, + [1526] = {.lex_state = 292}, + [1527] = {.lex_state = 292}, + [1528] = {.lex_state = 292}, + [1529] = {.lex_state = 294}, + [1530] = {.lex_state = 265}, + [1531] = {.lex_state = 294}, + [1532] = {.lex_state = 294}, + [1533] = {.lex_state = 294}, + [1534] = {.lex_state = 297}, + [1535] = {.lex_state = 235, .external_lex_state = 3}, + [1536] = {.lex_state = 235, .external_lex_state = 4}, + [1537] = {.lex_state = 297}, + [1538] = {.lex_state = 242, .external_lex_state = 2}, + [1539] = {.lex_state = 262}, + [1540] = {.lex_state = 297}, + [1541] = {.lex_state = 297}, + [1542] = {.lex_state = 132}, + [1543] = {.lex_state = 305}, + [1544] = {.lex_state = 134}, + [1545] = {.lex_state = 134}, + [1546] = {.lex_state = 242, .external_lex_state = 2}, + [1547] = {.lex_state = 236, .external_lex_state = 2}, + [1548] = {.lex_state = 0}, + [1549] = {.lex_state = 236, .external_lex_state = 2}, + [1550] = {.lex_state = 236, .external_lex_state = 2}, + [1551] = {.lex_state = 305, .external_lex_state = 2}, + [1552] = {.lex_state = 305}, + [1553] = {.lex_state = 305}, + [1554] = {.lex_state = 297}, + [1555] = {.lex_state = 265}, + [1556] = {.lex_state = 297}, + [1557] = {.lex_state = 302}, + [1558] = {.lex_state = 270}, + [1559] = {.lex_state = 0}, + [1560] = {.lex_state = 297}, + [1561] = {.lex_state = 297}, + [1562] = {.lex_state = 297}, + [1563] = {.lex_state = 283}, + [1564] = {.lex_state = 283}, + [1565] = {.lex_state = 242, .external_lex_state = 2}, + [1566] = {.lex_state = 283}, + [1567] = {.lex_state = 236, .external_lex_state = 2}, + [1568] = {.lex_state = 283}, [1569] = {.lex_state = 132}, - [1570] = {.lex_state = 284}, + [1570] = {.lex_state = 299}, [1571] = {.lex_state = 132}, - [1572] = {.lex_state = 284}, - [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 286}, - [1575] = {.lex_state = 132}, - [1576] = {.lex_state = 289}, - [1577] = {.lex_state = 289}, - [1578] = {.lex_state = 242, .external_lex_state = 2}, - [1579] = {.lex_state = 289}, - [1580] = {.lex_state = 235, .external_lex_state = 3}, - [1581] = {.lex_state = 235, .external_lex_state = 4}, - [1582] = {.lex_state = 292}, - [1583] = {.lex_state = 262}, - [1584] = {.lex_state = 259}, - [1585] = {.lex_state = 267}, - [1586] = {.lex_state = 236, .external_lex_state = 2}, - [1587] = {.lex_state = 292}, - [1588] = {.lex_state = 292}, - [1589] = {.lex_state = 292}, + [1572] = {.lex_state = 283}, + [1573] = {.lex_state = 283}, + [1574] = {.lex_state = 283}, + [1575] = {.lex_state = 270}, + [1576] = {.lex_state = 276}, + [1577] = {.lex_state = 276}, + [1578] = {.lex_state = 276}, + [1579] = {.lex_state = 284}, + [1580] = {.lex_state = 262}, + [1581] = {.lex_state = 262}, + [1582] = {.lex_state = 285}, + [1583] = {.lex_state = 132}, + [1584] = {.lex_state = 286}, + [1585] = {.lex_state = 132}, + [1586] = {.lex_state = 287}, + [1587] = {.lex_state = 132}, + [1588] = {.lex_state = 262}, + [1589] = {.lex_state = 288}, [1590] = {.lex_state = 132}, - [1591] = {.lex_state = 132}, + [1591] = {.lex_state = 259}, [1592] = {.lex_state = 236, .external_lex_state = 2}, - [1593] = {.lex_state = 268, .external_lex_state = 2}, - [1594] = {.lex_state = 236, .external_lex_state = 2}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 236, .external_lex_state = 2}, - [1597] = {.lex_state = 292}, - [1598] = {.lex_state = 292}, - [1599] = {.lex_state = 289}, - [1600] = {.lex_state = 132}, - [1601] = {.lex_state = 289}, - [1602] = {.lex_state = 132}, - [1603] = {.lex_state = 289}, - [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 284}, - [1606] = {.lex_state = 291}, - [1607] = {.lex_state = 235, .external_lex_state = 3}, - [1608] = {.lex_state = 235, .external_lex_state = 4}, - [1609] = {.lex_state = 291}, - [1610] = {.lex_state = 242, .external_lex_state = 2}, - [1611] = {.lex_state = 262}, - [1612] = {.lex_state = 291}, + [1593] = {.lex_state = 262}, + [1594] = {.lex_state = 277}, + [1595] = {.lex_state = 277}, + [1596] = {.lex_state = 277}, + [1597] = {.lex_state = 289}, + [1598] = {.lex_state = 262}, + [1599] = {.lex_state = 259}, + [1600] = {.lex_state = 259}, + [1601] = {.lex_state = 288}, + [1602] = {.lex_state = 278}, + [1603] = {.lex_state = 279}, + [1604] = {.lex_state = 280}, + [1605] = {.lex_state = 300}, + [1606] = {.lex_state = 235, .external_lex_state = 3}, + [1607] = {.lex_state = 235, .external_lex_state = 4}, + [1608] = {.lex_state = 300}, + [1609] = {.lex_state = 242, .external_lex_state = 2}, + [1610] = {.lex_state = 262}, + [1611] = {.lex_state = 300}, + [1612] = {.lex_state = 300}, [1613] = {.lex_state = 132}, - [1614] = {.lex_state = 291}, - [1615] = {.lex_state = 291}, + [1614] = {.lex_state = 300}, + [1615] = {.lex_state = 300}, [1616] = {.lex_state = 265}, - [1617] = {.lex_state = 291}, - [1618] = {.lex_state = 291}, - [1619] = {.lex_state = 267}, - [1620] = {.lex_state = 284}, + [1617] = {.lex_state = 300}, + [1618] = {.lex_state = 303}, + [1619] = {.lex_state = 270}, + [1620] = {.lex_state = 280}, [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 291}, - [1623] = {.lex_state = 291}, - [1624] = {.lex_state = 284}, - [1625] = {.lex_state = 284}, - [1626] = {.lex_state = 284}, - [1627] = {.lex_state = 286}, - [1628] = {.lex_state = 289}, - [1629] = {.lex_state = 292}, - [1630] = {.lex_state = 235, .external_lex_state = 3}, - [1631] = {.lex_state = 235, .external_lex_state = 4}, + [1622] = {.lex_state = 300}, + [1623] = {.lex_state = 300}, + [1624] = {.lex_state = 300}, + [1625] = {.lex_state = 280}, + [1626] = {.lex_state = 291}, + [1627] = {.lex_state = 281}, + [1628] = {.lex_state = 282}, + [1629] = {.lex_state = 280}, + [1630] = {.lex_state = 236, .external_lex_state = 2}, + [1631] = {.lex_state = 292}, [1632] = {.lex_state = 292}, [1633] = {.lex_state = 242, .external_lex_state = 2}, - [1634] = {.lex_state = 262}, - [1635] = {.lex_state = 292}, - [1636] = {.lex_state = 132}, - [1637] = {.lex_state = 292}, - [1638] = {.lex_state = 292}, - [1639] = {.lex_state = 265}, - [1640] = {.lex_state = 292}, - [1641] = {.lex_state = 292}, - [1642] = {.lex_state = 267}, - [1643] = {.lex_state = 289}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 292}, - [1646] = {.lex_state = 292}, - [1647] = {.lex_state = 289}, - [1648] = {.lex_state = 289}, - [1649] = {.lex_state = 289}, - [1650] = {.lex_state = 291}, - [1651] = {.lex_state = 291}, - [1652] = {.lex_state = 242, .external_lex_state = 2}, - [1653] = {.lex_state = 291}, - [1654] = {.lex_state = 236, .external_lex_state = 2}, - [1655] = {.lex_state = 291}, + [1634] = {.lex_state = 292}, + [1635] = {.lex_state = 235, .external_lex_state = 3}, + [1636] = {.lex_state = 235, .external_lex_state = 4}, + [1637] = {.lex_state = 304}, + [1638] = {.lex_state = 262}, + [1639] = {.lex_state = 259}, + [1640] = {.lex_state = 0}, + [1641] = {.lex_state = 270}, + [1642] = {.lex_state = 236, .external_lex_state = 2}, + [1643] = {.lex_state = 304}, + [1644] = {.lex_state = 304}, + [1645] = {.lex_state = 304}, + [1646] = {.lex_state = 132}, + [1647] = {.lex_state = 132}, + [1648] = {.lex_state = 236, .external_lex_state = 2}, + [1649] = {.lex_state = 271, .external_lex_state = 2}, + [1650] = {.lex_state = 236, .external_lex_state = 2}, + [1651] = {.lex_state = 0}, + [1652] = {.lex_state = 236, .external_lex_state = 2}, + [1653] = {.lex_state = 304}, + [1654] = {.lex_state = 306}, + [1655] = {.lex_state = 292}, [1656] = {.lex_state = 132}, - [1657] = {.lex_state = 291}, + [1657] = {.lex_state = 301}, [1658] = {.lex_state = 132}, - [1659] = {.lex_state = 291}, - [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 292}, - [1662] = {.lex_state = 292}, - [1663] = {.lex_state = 242, .external_lex_state = 2}, - [1664] = {.lex_state = 292}, - [1665] = {.lex_state = 236, .external_lex_state = 2}, - [1666] = {.lex_state = 292}, - [1667] = {.lex_state = 132}, - [1668] = {.lex_state = 292}, - [1669] = {.lex_state = 132}, - [1670] = {.lex_state = 292}, + [1659] = {.lex_state = 292}, + [1660] = {.lex_state = 294}, + [1661] = {.lex_state = 132}, + [1662] = {.lex_state = 297}, + [1663] = {.lex_state = 297}, + [1664] = {.lex_state = 242, .external_lex_state = 2}, + [1665] = {.lex_state = 297}, + [1666] = {.lex_state = 235, .external_lex_state = 3}, + [1667] = {.lex_state = 235, .external_lex_state = 4}, + [1668] = {.lex_state = 305}, + [1669] = {.lex_state = 262}, + [1670] = {.lex_state = 259}, [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 291}, - [1673] = {.lex_state = 291}, - [1674] = {.lex_state = 291}, - [1675] = {.lex_state = 291}, - [1676] = {.lex_state = 291}, - [1677] = {.lex_state = 292}, - [1678] = {.lex_state = 292}, - [1679] = {.lex_state = 292}, - [1680] = {.lex_state = 292}, - [1681] = {.lex_state = 292}, + [1672] = {.lex_state = 270}, + [1673] = {.lex_state = 236, .external_lex_state = 2}, + [1674] = {.lex_state = 305}, + [1675] = {.lex_state = 305}, + [1676] = {.lex_state = 305}, + [1677] = {.lex_state = 132}, + [1678] = {.lex_state = 132}, + [1679] = {.lex_state = 236, .external_lex_state = 2}, + [1680] = {.lex_state = 271, .external_lex_state = 2}, + [1681] = {.lex_state = 236, .external_lex_state = 2}, + [1682] = {.lex_state = 0}, + [1683] = {.lex_state = 236, .external_lex_state = 2}, + [1684] = {.lex_state = 305}, + [1685] = {.lex_state = 307}, + [1686] = {.lex_state = 297}, + [1687] = {.lex_state = 132}, + [1688] = {.lex_state = 302}, + [1689] = {.lex_state = 132}, + [1690] = {.lex_state = 297}, + [1691] = {.lex_state = 283}, + [1692] = {.lex_state = 283}, + [1693] = {.lex_state = 283}, + [1694] = {.lex_state = 299}, + [1695] = {.lex_state = 236, .external_lex_state = 2}, + [1696] = {.lex_state = 285}, + [1697] = {.lex_state = 286}, + [1698] = {.lex_state = 287}, + [1699] = {.lex_state = 288}, + [1700] = {.lex_state = 259}, + [1701] = {.lex_state = 262}, + [1702] = {.lex_state = 236, .external_lex_state = 2}, + [1703] = {.lex_state = 262}, + [1704] = {.lex_state = 300}, + [1705] = {.lex_state = 300}, + [1706] = {.lex_state = 242, .external_lex_state = 2}, + [1707] = {.lex_state = 300}, + [1708] = {.lex_state = 236, .external_lex_state = 2}, + [1709] = {.lex_state = 300}, + [1710] = {.lex_state = 132}, + [1711] = {.lex_state = 303}, + [1712] = {.lex_state = 132}, + [1713] = {.lex_state = 300}, + [1714] = {.lex_state = 280}, + [1715] = {.lex_state = 292}, + [1716] = {.lex_state = 304}, + [1717] = {.lex_state = 235, .external_lex_state = 3}, + [1718] = {.lex_state = 235, .external_lex_state = 4}, + [1719] = {.lex_state = 304}, + [1720] = {.lex_state = 242, .external_lex_state = 2}, + [1721] = {.lex_state = 262}, + [1722] = {.lex_state = 304}, + [1723] = {.lex_state = 304}, + [1724] = {.lex_state = 132}, + [1725] = {.lex_state = 304}, + [1726] = {.lex_state = 304}, + [1727] = {.lex_state = 265}, + [1728] = {.lex_state = 304}, + [1729] = {.lex_state = 306}, + [1730] = {.lex_state = 270}, + [1731] = {.lex_state = 292}, + [1732] = {.lex_state = 0}, + [1733] = {.lex_state = 304}, + [1734] = {.lex_state = 304}, + [1735] = {.lex_state = 304}, + [1736] = {.lex_state = 292}, + [1737] = {.lex_state = 301}, + [1738] = {.lex_state = 294}, + [1739] = {.lex_state = 297}, + [1740] = {.lex_state = 305}, + [1741] = {.lex_state = 235, .external_lex_state = 3}, + [1742] = {.lex_state = 235, .external_lex_state = 4}, + [1743] = {.lex_state = 305}, + [1744] = {.lex_state = 242, .external_lex_state = 2}, + [1745] = {.lex_state = 262}, + [1746] = {.lex_state = 305}, + [1747] = {.lex_state = 305}, + [1748] = {.lex_state = 132}, + [1749] = {.lex_state = 305}, + [1750] = {.lex_state = 305}, + [1751] = {.lex_state = 265}, + [1752] = {.lex_state = 305}, + [1753] = {.lex_state = 307}, + [1754] = {.lex_state = 270}, + [1755] = {.lex_state = 297}, + [1756] = {.lex_state = 0}, + [1757] = {.lex_state = 305}, + [1758] = {.lex_state = 305}, + [1759] = {.lex_state = 305}, + [1760] = {.lex_state = 297}, + [1761] = {.lex_state = 302}, + [1762] = {.lex_state = 283}, + [1763] = {.lex_state = 259}, + [1764] = {.lex_state = 300}, + [1765] = {.lex_state = 300}, + [1766] = {.lex_state = 300}, + [1767] = {.lex_state = 303}, + [1768] = {.lex_state = 304}, + [1769] = {.lex_state = 304}, + [1770] = {.lex_state = 242, .external_lex_state = 2}, + [1771] = {.lex_state = 304}, + [1772] = {.lex_state = 236, .external_lex_state = 2}, + [1773] = {.lex_state = 304}, + [1774] = {.lex_state = 132}, + [1775] = {.lex_state = 306}, + [1776] = {.lex_state = 132}, + [1777] = {.lex_state = 304}, + [1778] = {.lex_state = 305}, + [1779] = {.lex_state = 305}, + [1780] = {.lex_state = 242, .external_lex_state = 2}, + [1781] = {.lex_state = 305}, + [1782] = {.lex_state = 236, .external_lex_state = 2}, + [1783] = {.lex_state = 305}, + [1784] = {.lex_state = 132}, + [1785] = {.lex_state = 307}, + [1786] = {.lex_state = 132}, + [1787] = {.lex_state = 305}, + [1788] = {.lex_state = 304}, + [1789] = {.lex_state = 304}, + [1790] = {.lex_state = 304}, + [1791] = {.lex_state = 306}, + [1792] = {.lex_state = 305}, + [1793] = {.lex_state = 305}, + [1794] = {.lex_state = 305}, + [1795] = {.lex_state = 307}, }; enum { @@ -6197,7 +6889,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(34), }, [3] = { - [sym_stable_identifier] = STATE(20), + [sym_stable_identifier] = STATE(19), [sym_identifier] = ACTIONS(38), [sym_comment] = ACTIONS(34), }, @@ -6219,15 +6911,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(34), }, [8] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(32), - [sym_alternative_pattern] = STATE(32), - [sym_typed_pattern] = STATE(32), - [sym_tuple_pattern] = STATE(32), - [sym_parenthesized_pattern] = STATE(32), - [sym_wildcard] = STATE(32), - [sym_string] = STATE(32), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(31), + [sym_alternative_pattern] = STATE(31), + [sym_typed_pattern] = STATE(31), + [sym_tuple_pattern] = STATE(31), + [sym_parenthesized_pattern] = STATE(31), + [sym_wildcard] = STATE(31), + [sym_string] = STATE(31), [sym__simple_string] = ACTIONS(50), [sym__string_start] = ACTIONS(52), [sym__multiline_string_start] = ACTIONS(54), @@ -6238,15 +6930,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(34), }, [9] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(36), - [sym_alternative_pattern] = STATE(36), - [sym_typed_pattern] = STATE(36), - [sym_tuple_pattern] = STATE(36), - [sym_parenthesized_pattern] = STATE(36), - [sym_wildcard] = STATE(36), - [sym_string] = STATE(36), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(35), + [sym_alternative_pattern] = STATE(35), + [sym_typed_pattern] = STATE(35), + [sym_tuple_pattern] = STATE(35), + [sym_parenthesized_pattern] = STATE(35), + [sym_wildcard] = STATE(35), + [sym_string] = STATE(35), [sym__simple_string] = ACTIONS(50), [sym__string_start] = ACTIONS(52), [sym__multiline_string_start] = ACTIONS(54), @@ -6267,6 +6959,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [12] = { [anon_sym_case] = ACTIONS(72), [anon_sym_class] = ACTIONS(72), + [anon_sym_val] = ACTIONS(72), + [anon_sym_var] = ACTIONS(72), + [anon_sym_type] = ACTIONS(72), [anon_sym_def] = ACTIONS(72), [anon_sym_abstract] = ACTIONS(72), [anon_sym_final] = ACTIONS(72), @@ -6308,7 +7003,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [15] = { [anon_sym_case] = ACTIONS(78), [anon_sym_class] = ACTIONS(42), - [anon_sym_def] = ACTIONS(80), + [anon_sym_val] = ACTIONS(80), + [anon_sym_var] = ACTIONS(82), + [anon_sym_type] = ACTIONS(84), + [anon_sym_def] = ACTIONS(86), [sym_comment] = ACTIONS(34), }, [16] = { @@ -6325,9 +7023,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(14), [sym_function_declaration] = STATE(14), [sym_modifiers] = STATE(15), - [aux_sym_compilation_unit_repeat1] = STATE(41), + [aux_sym_compilation_unit_repeat1] = STATE(43), [aux_sym_modifiers_repeat1] = STATE(17), - [ts_builtin_sym_end] = ACTIONS(82), + [ts_builtin_sym_end] = ACTIONS(88), [anon_sym_package] = ACTIONS(12), [anon_sym_import] = ACTIONS(14), [anon_sym_case] = ACTIONS(16), @@ -6349,10 +7047,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(34), }, [17] = { - [aux_sym_modifiers_repeat1] = STATE(42), - [anon_sym_case] = ACTIONS(84), - [anon_sym_class] = ACTIONS(84), - [anon_sym_def] = ACTIONS(84), + [aux_sym_modifiers_repeat1] = STATE(44), + [anon_sym_case] = ACTIONS(90), + [anon_sym_class] = ACTIONS(90), + [anon_sym_val] = ACTIONS(90), + [anon_sym_var] = ACTIONS(90), + [anon_sym_type] = ACTIONS(90), + [anon_sym_def] = ACTIONS(90), [anon_sym_abstract] = ACTIONS(32), [anon_sym_final] = ACTIONS(32), [anon_sym_sealed] = ACTIONS(32), @@ -6364,262 +7065,300 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(34), }, [18] = { - [ts_builtin_sym_end] = ACTIONS(86), - [anon_sym_package] = ACTIONS(86), - [anon_sym_import] = ACTIONS(86), - [anon_sym_RBRACE] = ACTIONS(86), - [anon_sym_case] = ACTIONS(86), - [anon_sym_object] = ACTIONS(86), - [anon_sym_class] = ACTIONS(86), - [anon_sym_trait] = ACTIONS(86), - [anon_sym_val] = ACTIONS(86), - [anon_sym_var] = ACTIONS(86), - [anon_sym_type] = ACTIONS(86), - [anon_sym_def] = ACTIONS(86), - [anon_sym_abstract] = ACTIONS(86), - [anon_sym_final] = ACTIONS(86), - [anon_sym_sealed] = ACTIONS(86), - [anon_sym_implicit] = ACTIONS(86), - [anon_sym_lazy] = ACTIONS(86), - [anon_sym_override] = ACTIONS(86), - [anon_sym_private] = ACTIONS(86), - [anon_sym_protected] = ACTIONS(86), + [ts_builtin_sym_end] = ACTIONS(92), + [anon_sym_package] = ACTIONS(92), + [anon_sym_import] = ACTIONS(92), + [anon_sym_RBRACE] = ACTIONS(92), + [anon_sym_case] = ACTIONS(92), + [anon_sym_object] = ACTIONS(92), + [anon_sym_class] = ACTIONS(92), + [anon_sym_trait] = ACTIONS(92), + [anon_sym_val] = ACTIONS(92), + [anon_sym_var] = ACTIONS(92), + [anon_sym_type] = ACTIONS(92), + [anon_sym_def] = ACTIONS(92), + [anon_sym_abstract] = ACTIONS(92), + [anon_sym_final] = ACTIONS(92), + [anon_sym_sealed] = ACTIONS(92), + [anon_sym_implicit] = ACTIONS(92), + [anon_sym_lazy] = ACTIONS(92), + [anon_sym_override] = ACTIONS(92), + [anon_sym_private] = ACTIONS(92), + [anon_sym_protected] = ACTIONS(92), [sym_comment] = ACTIONS(34), }, [19] = { - [anon_sym_DOT] = ACTIONS(88), + [ts_builtin_sym_end] = ACTIONS(94), + [anon_sym_package] = ACTIONS(94), + [anon_sym_import] = ACTIONS(94), + [anon_sym_DOT] = ACTIONS(96), + [anon_sym_RBRACE] = ACTIONS(94), + [anon_sym_case] = ACTIONS(94), + [anon_sym_object] = ACTIONS(94), + [anon_sym_class] = ACTIONS(94), + [anon_sym_trait] = ACTIONS(94), + [anon_sym_val] = ACTIONS(94), + [anon_sym_var] = ACTIONS(94), + [anon_sym_type] = ACTIONS(94), + [anon_sym_def] = ACTIONS(94), + [anon_sym_abstract] = ACTIONS(94), + [anon_sym_final] = ACTIONS(94), + [anon_sym_sealed] = ACTIONS(94), + [anon_sym_implicit] = ACTIONS(94), + [anon_sym_lazy] = ACTIONS(94), + [anon_sym_override] = ACTIONS(94), + [anon_sym_private] = ACTIONS(94), + [anon_sym_protected] = ACTIONS(94), [sym_comment] = ACTIONS(34), }, [20] = { - [ts_builtin_sym_end] = ACTIONS(90), - [anon_sym_package] = ACTIONS(90), - [anon_sym_import] = ACTIONS(90), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_RBRACE] = ACTIONS(90), - [anon_sym_case] = ACTIONS(90), - [anon_sym_object] = ACTIONS(90), - [anon_sym_class] = ACTIONS(90), - [anon_sym_trait] = ACTIONS(90), - [anon_sym_val] = ACTIONS(90), - [anon_sym_var] = ACTIONS(90), - [anon_sym_type] = ACTIONS(90), - [anon_sym_def] = ACTIONS(90), - [anon_sym_abstract] = ACTIONS(90), - [anon_sym_final] = ACTIONS(90), - [anon_sym_sealed] = ACTIONS(90), - [anon_sym_implicit] = ACTIONS(90), - [anon_sym_lazy] = ACTIONS(90), - [anon_sym_override] = ACTIONS(90), - [anon_sym_private] = ACTIONS(90), - [anon_sym_protected] = ACTIONS(90), + [sym_identifier] = ACTIONS(98), [sym_comment] = ACTIONS(34), }, [21] = { - [sym_identifier] = ACTIONS(94), + [sym_identifier] = ACTIONS(100), [sym_comment] = ACTIONS(34), }, [22] = { - [sym_identifier] = ACTIONS(96), + [sym_template_body] = STATE(49), + [anon_sym_LBRACE] = ACTIONS(102), [sym_comment] = ACTIONS(34), }, [23] = { - [sym_template_body] = STATE(48), - [anon_sym_LBRACE] = ACTIONS(98), + [sym_type_parameters] = STATE(53), + [sym_template_body] = STATE(54), + [sym_extends_clause] = STATE(55), + [sym_class_parameters] = STATE(56), + [ts_builtin_sym_end] = ACTIONS(104), + [anon_sym_package] = ACTIONS(104), + [anon_sym_import] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_case] = ACTIONS(104), + [anon_sym_object] = ACTIONS(104), + [anon_sym_class] = ACTIONS(104), + [anon_sym_trait] = ACTIONS(104), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_val] = ACTIONS(104), + [anon_sym_var] = ACTIONS(104), + [anon_sym_type] = ACTIONS(104), + [anon_sym_def] = ACTIONS(104), + [anon_sym_abstract] = ACTIONS(104), + [anon_sym_final] = ACTIONS(104), + [anon_sym_sealed] = ACTIONS(104), + [anon_sym_implicit] = ACTIONS(104), + [anon_sym_lazy] = ACTIONS(104), + [anon_sym_override] = ACTIONS(104), + [anon_sym_private] = ACTIONS(104), + [anon_sym_protected] = ACTIONS(104), + [anon_sym_extends] = ACTIONS(108), + [anon_sym_LPAREN] = ACTIONS(110), [sym_comment] = ACTIONS(34), }, [24] = { - [sym_type_parameters] = STATE(52), - [sym_template_body] = STATE(53), - [sym_extends_clause] = STATE(54), - [sym_class_parameters] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(100), - [anon_sym_package] = ACTIONS(100), - [anon_sym_import] = ACTIONS(100), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_case] = ACTIONS(100), - [anon_sym_object] = ACTIONS(100), - [anon_sym_class] = ACTIONS(100), - [anon_sym_trait] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_val] = ACTIONS(100), - [anon_sym_var] = ACTIONS(100), - [anon_sym_type] = ACTIONS(100), - [anon_sym_def] = ACTIONS(100), - [anon_sym_abstract] = ACTIONS(100), - [anon_sym_final] = ACTIONS(100), - [anon_sym_sealed] = ACTIONS(100), - [anon_sym_implicit] = ACTIONS(100), - [anon_sym_lazy] = ACTIONS(100), - [anon_sym_override] = ACTIONS(100), - [anon_sym_private] = ACTIONS(100), - [anon_sym_protected] = ACTIONS(100), - [anon_sym_extends] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(106), + [sym_type_parameters] = STATE(58), + [sym_template_body] = STATE(59), + [sym_extends_clause] = STATE(60), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_extends] = ACTIONS(112), [sym_comment] = ACTIONS(34), }, [25] = { - [sym_type_parameters] = STATE(57), - [sym_template_body] = STATE(58), - [sym_extends_clause] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_extends] = ACTIONS(108), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_EQ_GT] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_RPAREN] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_if] = ACTIONS(114), [sym_comment] = ACTIONS(34), }, [26] = { - [anon_sym_COMMA] = ACTIONS(110), - [anon_sym_EQ_GT] = ACTIONS(110), - [anon_sym_COLON] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_RPAREN] = ACTIONS(110), - [anon_sym_PIPE] = ACTIONS(110), - [anon_sym_if] = ACTIONS(110), + [sym_interpolation] = STATE(62), + [anon_sym_DOLLAR] = ACTIONS(118), [sym_comment] = ACTIONS(34), }, [27] = { - [sym_interpolation] = STATE(61), - [anon_sym_DOLLAR] = ACTIONS(114), + [sym_interpolation] = STATE(64), + [anon_sym_DOLLAR] = ACTIONS(120), [sym_comment] = ACTIONS(34), }, [28] = { - [sym_interpolation] = STATE(63), - [anon_sym_DOLLAR] = ACTIONS(116), + [ts_builtin_sym_end] = ACTIONS(122), + [anon_sym_package] = ACTIONS(122), + [anon_sym_import] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(122), + [anon_sym_RBRACE] = ACTIONS(122), + [anon_sym_EQ_GT] = ACTIONS(122), + [anon_sym_case] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_class] = ACTIONS(122), + [anon_sym_trait] = ACTIONS(122), + [anon_sym_val] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(122), + [anon_sym_EQ] = ACTIONS(124), + [anon_sym_var] = ACTIONS(122), + [anon_sym_type] = ACTIONS(122), + [anon_sym_def] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(122), + [anon_sym_final] = ACTIONS(122), + [anon_sym_sealed] = ACTIONS(122), + [anon_sym_implicit] = ACTIONS(122), + [anon_sym_lazy] = ACTIONS(122), + [anon_sym_override] = ACTIONS(122), + [anon_sym_private] = ACTIONS(122), + [anon_sym_protected] = ACTIONS(122), + [anon_sym_RPAREN] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_if] = ACTIONS(122), [sym_comment] = ACTIONS(34), }, [29] = { - [ts_builtin_sym_end] = ACTIONS(118), - [anon_sym_package] = ACTIONS(118), - [anon_sym_import] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(118), - [anon_sym_case] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_class] = ACTIONS(118), - [anon_sym_trait] = ACTIONS(118), - [anon_sym_val] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(120), - [anon_sym_var] = ACTIONS(118), - [anon_sym_type] = ACTIONS(118), - [anon_sym_def] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(118), - [anon_sym_final] = ACTIONS(118), - [anon_sym_sealed] = ACTIONS(118), - [anon_sym_implicit] = ACTIONS(118), - [anon_sym_lazy] = ACTIONS(118), - [anon_sym_override] = ACTIONS(118), - [anon_sym_private] = ACTIONS(118), - [anon_sym_protected] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_if] = ACTIONS(118), - [sym_comment] = ACTIONS(34), - }, - [30] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(65), - [sym_alternative_pattern] = STATE(65), - [sym_typed_pattern] = STATE(65), - [sym_tuple_pattern] = STATE(65), - [sym_parenthesized_pattern] = STATE(65), - [sym_wildcard] = STATE(65), - [sym_string] = STATE(65), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(66), + [sym_alternative_pattern] = STATE(66), + [sym_typed_pattern] = STATE(66), + [sym_tuple_pattern] = STATE(66), + [sym_parenthesized_pattern] = STATE(66), + [sym_wildcard] = STATE(66), + [sym_string] = STATE(66), [sym__simple_string] = ACTIONS(50), [sym__string_start] = ACTIONS(52), [sym__multiline_string_start] = ACTIONS(54), [anon_sym__] = ACTIONS(56), [anon_sym_LPAREN] = ACTIONS(58), - [sym_identifier] = ACTIONS(122), - [sym_number] = ACTIONS(124), + [sym_identifier] = ACTIONS(126), + [sym_number] = ACTIONS(128), + [sym_comment] = ACTIONS(34), + }, + [30] = { + [aux_sym_val_declaration_repeat1] = STATE(73), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(134), + [anon_sym_EQ] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [31] = { - [aux_sym_val_declaration_repeat1] = STATE(72), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(130), - [anon_sym_EQ] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_COLON] = ACTIONS(142), + [anon_sym_EQ] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [32] = { - [anon_sym_COLON] = ACTIONS(138), - [anon_sym_EQ] = ACTIONS(132), - [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(144), [sym_comment] = ACTIONS(34), }, [33] = { - [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_DOT] = ACTIONS(130), [sym_comment] = ACTIONS(34), }, [34] = { - [anon_sym_DOT] = ACTIONS(126), + [aux_sym_val_declaration_repeat1] = STATE(78), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(146), + [anon_sym_EQ] = ACTIONS(148), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [35] = { - [aux_sym_val_declaration_repeat1] = STATE(77), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(142), - [anon_sym_EQ] = ACTIONS(144), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_COLON] = ACTIONS(150), + [anon_sym_EQ] = ACTIONS(148), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [36] = { - [anon_sym_COLON] = ACTIONS(146), - [anon_sym_EQ] = ACTIONS(144), - [anon_sym_PIPE] = ACTIONS(136), + [sym_type_parameters] = STATE(81), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(152), [sym_comment] = ACTIONS(34), }, [37] = { - [sym_type_parameters] = STATE(80), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_EQ] = ACTIONS(148), + [sym_type_parameters] = STATE(86), + [sym_parameters] = STATE(87), + [sym_block] = STATE(88), + [ts_builtin_sym_end] = ACTIONS(154), + [anon_sym_package] = ACTIONS(154), + [anon_sym_import] = ACTIONS(154), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_case] = ACTIONS(154), + [anon_sym_object] = ACTIONS(154), + [anon_sym_class] = ACTIONS(154), + [anon_sym_trait] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_val] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_var] = ACTIONS(154), + [anon_sym_type] = ACTIONS(154), + [anon_sym_def] = ACTIONS(154), + [anon_sym_abstract] = ACTIONS(154), + [anon_sym_final] = ACTIONS(154), + [anon_sym_sealed] = ACTIONS(154), + [anon_sym_implicit] = ACTIONS(154), + [anon_sym_lazy] = ACTIONS(154), + [anon_sym_override] = ACTIONS(154), + [anon_sym_private] = ACTIONS(154), + [anon_sym_protected] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(162), [sym_comment] = ACTIONS(34), }, [38] = { - [sym_type_parameters] = STATE(85), - [sym_parameters] = STATE(86), - [sym_block] = STATE(87), - [ts_builtin_sym_end] = ACTIONS(150), - [anon_sym_package] = ACTIONS(150), - [anon_sym_import] = ACTIONS(150), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_case] = ACTIONS(150), - [anon_sym_object] = ACTIONS(150), - [anon_sym_class] = ACTIONS(150), - [anon_sym_trait] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_val] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(156), - [anon_sym_var] = ACTIONS(150), - [anon_sym_type] = ACTIONS(150), - [anon_sym_def] = ACTIONS(150), - [anon_sym_abstract] = ACTIONS(150), - [anon_sym_final] = ACTIONS(150), - [anon_sym_sealed] = ACTIONS(150), - [anon_sym_implicit] = ACTIONS(150), - [anon_sym_lazy] = ACTIONS(150), - [anon_sym_override] = ACTIONS(150), - [anon_sym_private] = ACTIONS(150), - [anon_sym_protected] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_class] = ACTIONS(164), [sym_comment] = ACTIONS(34), }, [39] = { - [anon_sym_class] = ACTIONS(160), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(91), + [sym_alternative_pattern] = STATE(91), + [sym_typed_pattern] = STATE(91), + [sym_tuple_pattern] = STATE(91), + [sym_parenthesized_pattern] = STATE(91), + [sym_wildcard] = STATE(91), + [sym_string] = STATE(91), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(166), + [sym_number] = ACTIONS(168), [sym_comment] = ACTIONS(34), }, [40] = { - [sym_identifier] = ACTIONS(162), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(93), + [sym_alternative_pattern] = STATE(93), + [sym_typed_pattern] = STATE(93), + [sym_tuple_pattern] = STATE(93), + [sym_parenthesized_pattern] = STATE(93), + [sym_wildcard] = STATE(93), + [sym_string] = STATE(93), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(170), + [sym_number] = ACTIONS(172), [sym_comment] = ACTIONS(34), }, [41] = { + [sym_identifier] = ACTIONS(174), + [sym_comment] = ACTIONS(34), + }, + [42] = { + [sym_identifier] = ACTIONS(176), + [sym_comment] = ACTIONS(34), + }, + [43] = { [sym_package_clause] = STATE(14), [sym_import_declaration] = STATE(14), [sym_object_definition] = STATE(14), @@ -6633,92 +7372,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(14), [sym_function_declaration] = STATE(14), [sym_modifiers] = STATE(15), - [aux_sym_compilation_unit_repeat1] = STATE(41), + [aux_sym_compilation_unit_repeat1] = STATE(43), [aux_sym_modifiers_repeat1] = STATE(17), - [ts_builtin_sym_end] = ACTIONS(164), - [anon_sym_package] = ACTIONS(166), - [anon_sym_import] = ACTIONS(169), - [anon_sym_case] = ACTIONS(172), - [anon_sym_object] = ACTIONS(175), - [anon_sym_class] = ACTIONS(178), - [anon_sym_trait] = ACTIONS(181), - [anon_sym_val] = ACTIONS(184), - [anon_sym_var] = ACTIONS(187), - [anon_sym_type] = ACTIONS(190), - [anon_sym_def] = ACTIONS(193), - [anon_sym_abstract] = ACTIONS(196), - [anon_sym_final] = ACTIONS(196), - [anon_sym_sealed] = ACTIONS(196), - [anon_sym_implicit] = ACTIONS(196), - [anon_sym_lazy] = ACTIONS(196), - [anon_sym_override] = ACTIONS(196), - [anon_sym_private] = ACTIONS(196), - [anon_sym_protected] = ACTIONS(196), - [sym_comment] = ACTIONS(34), - }, - [42] = { - [aux_sym_modifiers_repeat1] = STATE(42), - [anon_sym_case] = ACTIONS(199), - [anon_sym_class] = ACTIONS(199), - [anon_sym_def] = ACTIONS(199), - [anon_sym_abstract] = ACTIONS(201), - [anon_sym_final] = ACTIONS(201), - [anon_sym_sealed] = ACTIONS(201), - [anon_sym_implicit] = ACTIONS(201), - [anon_sym_lazy] = ACTIONS(201), - [anon_sym_override] = ACTIONS(201), - [anon_sym_private] = ACTIONS(201), - [anon_sym_protected] = ACTIONS(201), - [sym_comment] = ACTIONS(34), - }, - [43] = { - [sym_identifier] = ACTIONS(204), + [ts_builtin_sym_end] = ACTIONS(178), + [anon_sym_package] = ACTIONS(180), + [anon_sym_import] = ACTIONS(183), + [anon_sym_case] = ACTIONS(186), + [anon_sym_object] = ACTIONS(189), + [anon_sym_class] = ACTIONS(192), + [anon_sym_trait] = ACTIONS(195), + [anon_sym_val] = ACTIONS(198), + [anon_sym_var] = ACTIONS(201), + [anon_sym_type] = ACTIONS(204), + [anon_sym_def] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_final] = ACTIONS(210), + [anon_sym_sealed] = ACTIONS(210), + [anon_sym_implicit] = ACTIONS(210), + [anon_sym_lazy] = ACTIONS(210), + [anon_sym_override] = ACTIONS(210), + [anon_sym_private] = ACTIONS(210), + [anon_sym_protected] = ACTIONS(210), [sym_comment] = ACTIONS(34), }, [44] = { - [sym_import_selectors] = STATE(92), - [sym_wildcard] = STATE(92), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym__] = ACTIONS(56), - [sym_identifier] = ACTIONS(208), + [aux_sym_modifiers_repeat1] = STATE(44), + [anon_sym_case] = ACTIONS(213), + [anon_sym_class] = ACTIONS(213), + [anon_sym_val] = ACTIONS(213), + [anon_sym_var] = ACTIONS(213), + [anon_sym_type] = ACTIONS(213), + [anon_sym_def] = ACTIONS(213), + [anon_sym_abstract] = ACTIONS(215), + [anon_sym_final] = ACTIONS(215), + [anon_sym_sealed] = ACTIONS(215), + [anon_sym_implicit] = ACTIONS(215), + [anon_sym_lazy] = ACTIONS(215), + [anon_sym_override] = ACTIONS(215), + [anon_sym_private] = ACTIONS(215), + [anon_sym_protected] = ACTIONS(215), [sym_comment] = ACTIONS(34), }, [45] = { - [sym_template_body] = STATE(93), - [anon_sym_LBRACE] = ACTIONS(98), + [sym_import_selectors] = STATE(98), + [sym_wildcard] = STATE(98), + [anon_sym_LBRACE] = ACTIONS(218), + [anon_sym__] = ACTIONS(56), + [sym_identifier] = ACTIONS(220), [sym_comment] = ACTIONS(34), }, [46] = { - [sym_type_parameters] = STATE(94), - [sym_template_body] = STATE(95), - [sym_extends_clause] = STATE(96), - [sym_class_parameters] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(210), - [anon_sym_package] = ACTIONS(210), - [anon_sym_import] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_case] = ACTIONS(210), - [anon_sym_object] = ACTIONS(210), - [anon_sym_class] = ACTIONS(210), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_val] = ACTIONS(210), - [anon_sym_var] = ACTIONS(210), - [anon_sym_type] = ACTIONS(210), - [anon_sym_def] = ACTIONS(210), - [anon_sym_abstract] = ACTIONS(210), - [anon_sym_final] = ACTIONS(210), - [anon_sym_sealed] = ACTIONS(210), - [anon_sym_implicit] = ACTIONS(210), - [anon_sym_lazy] = ACTIONS(210), - [anon_sym_override] = ACTIONS(210), - [anon_sym_private] = ACTIONS(210), - [anon_sym_protected] = ACTIONS(210), - [anon_sym_extends] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(106), + [sym_template_body] = STATE(99), + [anon_sym_LBRACE] = ACTIONS(102), [sym_comment] = ACTIONS(34), }, [47] = { + [sym_type_parameters] = STATE(100), + [sym_template_body] = STATE(101), + [sym_extends_clause] = STATE(102), + [sym_class_parameters] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(222), + [anon_sym_package] = ACTIONS(222), + [anon_sym_import] = ACTIONS(222), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_case] = ACTIONS(222), + [anon_sym_object] = ACTIONS(222), + [anon_sym_class] = ACTIONS(222), + [anon_sym_trait] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_val] = ACTIONS(222), + [anon_sym_var] = ACTIONS(222), + [anon_sym_type] = ACTIONS(222), + [anon_sym_def] = ACTIONS(222), + [anon_sym_abstract] = ACTIONS(222), + [anon_sym_final] = ACTIONS(222), + [anon_sym_sealed] = ACTIONS(222), + [anon_sym_implicit] = ACTIONS(222), + [anon_sym_lazy] = ACTIONS(222), + [anon_sym_override] = ACTIONS(222), + [anon_sym_private] = ACTIONS(222), + [anon_sym_protected] = ACTIONS(222), + [anon_sym_extends] = ACTIONS(108), + [anon_sym_LPAREN] = ACTIONS(110), + [sym_comment] = ACTIONS(34), + }, + [48] = { [sym_package_clause] = STATE(14), [sym_import_declaration] = STATE(14), [sym_object_definition] = STATE(14), @@ -6731,20 +7469,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_definition] = STATE(14), [sym_function_definition] = STATE(14), [sym_function_declaration] = STATE(14), - [sym_modifiers] = STATE(105), - [aux_sym_compilation_unit_repeat1] = STATE(106), + [sym_modifiers] = STATE(111), + [aux_sym_compilation_unit_repeat1] = STATE(112), [aux_sym_modifiers_repeat1] = STATE(17), [anon_sym_package] = ACTIONS(12), [anon_sym_import] = ACTIONS(14), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_case] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(224), + [anon_sym_case] = ACTIONS(226), [anon_sym_object] = ACTIONS(18), - [anon_sym_class] = ACTIONS(216), + [anon_sym_class] = ACTIONS(228), [anon_sym_trait] = ACTIONS(22), - [anon_sym_val] = ACTIONS(218), - [anon_sym_var] = ACTIONS(220), - [anon_sym_type] = ACTIONS(222), - [anon_sym_def] = ACTIONS(224), + [anon_sym_val] = ACTIONS(230), + [anon_sym_var] = ACTIONS(232), + [anon_sym_type] = ACTIONS(234), + [anon_sym_def] = ACTIONS(236), [anon_sym_abstract] = ACTIONS(32), [anon_sym_final] = ACTIONS(32), [anon_sym_sealed] = ACTIONS(32), @@ -6755,766 +7493,635 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(32), [sym_comment] = ACTIONS(34), }, - [48] = { - [ts_builtin_sym_end] = ACTIONS(226), - [anon_sym_package] = ACTIONS(226), - [anon_sym_import] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_case] = ACTIONS(226), - [anon_sym_object] = ACTIONS(226), - [anon_sym_class] = ACTIONS(226), - [anon_sym_trait] = ACTIONS(226), - [anon_sym_val] = ACTIONS(226), - [anon_sym_var] = ACTIONS(226), - [anon_sym_type] = ACTIONS(226), - [anon_sym_def] = ACTIONS(226), - [anon_sym_abstract] = ACTIONS(226), - [anon_sym_final] = ACTIONS(226), - [anon_sym_sealed] = ACTIONS(226), - [anon_sym_implicit] = ACTIONS(226), - [anon_sym_lazy] = ACTIONS(226), - [anon_sym_override] = ACTIONS(226), - [anon_sym_private] = ACTIONS(226), - [anon_sym_protected] = ACTIONS(226), - [sym_comment] = ACTIONS(34), - }, [49] = { - [sym__type_parameter] = STATE(108), - [anon_sym__] = ACTIONS(228), - [sym_identifier] = ACTIONS(230), + [ts_builtin_sym_end] = ACTIONS(238), + [anon_sym_package] = ACTIONS(238), + [anon_sym_import] = ACTIONS(238), + [anon_sym_RBRACE] = ACTIONS(238), + [anon_sym_case] = ACTIONS(238), + [anon_sym_object] = ACTIONS(238), + [anon_sym_class] = ACTIONS(238), + [anon_sym_trait] = ACTIONS(238), + [anon_sym_val] = ACTIONS(238), + [anon_sym_var] = ACTIONS(238), + [anon_sym_type] = ACTIONS(238), + [anon_sym_def] = ACTIONS(238), + [anon_sym_abstract] = ACTIONS(238), + [anon_sym_final] = ACTIONS(238), + [anon_sym_sealed] = ACTIONS(238), + [anon_sym_implicit] = ACTIONS(238), + [anon_sym_lazy] = ACTIONS(238), + [anon_sym_override] = ACTIONS(238), + [anon_sym_private] = ACTIONS(238), + [anon_sym_protected] = ACTIONS(238), [sym_comment] = ACTIONS(34), }, [50] = { - [sym__type] = STATE(111), - [sym_compound_type] = STATE(112), - [sym_infix_type] = STATE(112), - [sym_stable_type_identifier] = STATE(113), - [sym_stable_identifier] = STATE(114), - [sym_generic_type] = STATE(112), - [sym_function_type] = STATE(112), - [sym_parameter_types] = STATE(115), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(234), + [sym__type_parameter] = STATE(114), + [anon_sym__] = ACTIONS(240), + [sym_identifier] = ACTIONS(242), [sym_comment] = ACTIONS(34), }, [51] = { - [sym_class_parameter] = STATE(119), - [anon_sym_val] = ACTIONS(236), - [anon_sym_var] = ACTIONS(236), - [anon_sym_RPAREN] = ACTIONS(238), - [sym_identifier] = ACTIONS(240), + [sym__type] = STATE(117), + [sym_compound_type] = STATE(118), + [sym_infix_type] = STATE(118), + [sym_stable_type_identifier] = STATE(119), + [sym_stable_identifier] = STATE(120), + [sym_generic_type] = STATE(118), + [sym_function_type] = STATE(118), + [sym_parameter_types] = STATE(121), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(246), [sym_comment] = ACTIONS(34), }, [52] = { - [sym_template_body] = STATE(95), - [sym_extends_clause] = STATE(96), - [sym_class_parameters] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(210), - [anon_sym_package] = ACTIONS(210), - [anon_sym_import] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_case] = ACTIONS(210), - [anon_sym_object] = ACTIONS(210), - [anon_sym_class] = ACTIONS(210), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_val] = ACTIONS(210), - [anon_sym_var] = ACTIONS(210), - [anon_sym_type] = ACTIONS(210), - [anon_sym_def] = ACTIONS(210), - [anon_sym_abstract] = ACTIONS(210), - [anon_sym_final] = ACTIONS(210), - [anon_sym_sealed] = ACTIONS(210), - [anon_sym_implicit] = ACTIONS(210), - [anon_sym_lazy] = ACTIONS(210), - [anon_sym_override] = ACTIONS(210), - [anon_sym_private] = ACTIONS(210), - [anon_sym_protected] = ACTIONS(210), - [anon_sym_extends] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(106), + [sym_class_parameter] = STATE(125), + [anon_sym_val] = ACTIONS(248), + [anon_sym_var] = ACTIONS(248), + [anon_sym_RPAREN] = ACTIONS(250), + [sym_identifier] = ACTIONS(252), [sym_comment] = ACTIONS(34), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(210), - [anon_sym_package] = ACTIONS(210), - [anon_sym_import] = ACTIONS(210), - [anon_sym_RBRACE] = ACTIONS(210), - [anon_sym_case] = ACTIONS(210), - [anon_sym_object] = ACTIONS(210), - [anon_sym_class] = ACTIONS(210), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_val] = ACTIONS(210), - [anon_sym_var] = ACTIONS(210), - [anon_sym_type] = ACTIONS(210), - [anon_sym_def] = ACTIONS(210), - [anon_sym_abstract] = ACTIONS(210), - [anon_sym_final] = ACTIONS(210), - [anon_sym_sealed] = ACTIONS(210), - [anon_sym_implicit] = ACTIONS(210), - [anon_sym_lazy] = ACTIONS(210), - [anon_sym_override] = ACTIONS(210), - [anon_sym_private] = ACTIONS(210), - [anon_sym_protected] = ACTIONS(210), + [sym_template_body] = STATE(101), + [sym_extends_clause] = STATE(102), + [sym_class_parameters] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(222), + [anon_sym_package] = ACTIONS(222), + [anon_sym_import] = ACTIONS(222), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_case] = ACTIONS(222), + [anon_sym_object] = ACTIONS(222), + [anon_sym_class] = ACTIONS(222), + [anon_sym_trait] = ACTIONS(222), + [anon_sym_val] = ACTIONS(222), + [anon_sym_var] = ACTIONS(222), + [anon_sym_type] = ACTIONS(222), + [anon_sym_def] = ACTIONS(222), + [anon_sym_abstract] = ACTIONS(222), + [anon_sym_final] = ACTIONS(222), + [anon_sym_sealed] = ACTIONS(222), + [anon_sym_implicit] = ACTIONS(222), + [anon_sym_lazy] = ACTIONS(222), + [anon_sym_override] = ACTIONS(222), + [anon_sym_private] = ACTIONS(222), + [anon_sym_protected] = ACTIONS(222), + [anon_sym_extends] = ACTIONS(108), + [anon_sym_LPAREN] = ACTIONS(110), [sym_comment] = ACTIONS(34), }, [54] = { - [sym_template_body] = STATE(95), - [ts_builtin_sym_end] = ACTIONS(210), - [anon_sym_package] = ACTIONS(210), - [anon_sym_import] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(210), - [anon_sym_case] = ACTIONS(210), - [anon_sym_object] = ACTIONS(210), - [anon_sym_class] = ACTIONS(210), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_val] = ACTIONS(210), - [anon_sym_var] = ACTIONS(210), - [anon_sym_type] = ACTIONS(210), - [anon_sym_def] = ACTIONS(210), - [anon_sym_abstract] = ACTIONS(210), - [anon_sym_final] = ACTIONS(210), - [anon_sym_sealed] = ACTIONS(210), - [anon_sym_implicit] = ACTIONS(210), - [anon_sym_lazy] = ACTIONS(210), - [anon_sym_override] = ACTIONS(210), - [anon_sym_private] = ACTIONS(210), - [anon_sym_protected] = ACTIONS(210), + [ts_builtin_sym_end] = ACTIONS(222), + [anon_sym_package] = ACTIONS(222), + [anon_sym_import] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_case] = ACTIONS(222), + [anon_sym_object] = ACTIONS(222), + [anon_sym_class] = ACTIONS(222), + [anon_sym_trait] = ACTIONS(222), + [anon_sym_val] = ACTIONS(222), + [anon_sym_var] = ACTIONS(222), + [anon_sym_type] = ACTIONS(222), + [anon_sym_def] = ACTIONS(222), + [anon_sym_abstract] = ACTIONS(222), + [anon_sym_final] = ACTIONS(222), + [anon_sym_sealed] = ACTIONS(222), + [anon_sym_implicit] = ACTIONS(222), + [anon_sym_lazy] = ACTIONS(222), + [anon_sym_override] = ACTIONS(222), + [anon_sym_private] = ACTIONS(222), + [anon_sym_protected] = ACTIONS(222), [sym_comment] = ACTIONS(34), }, [55] = { - [sym_template_body] = STATE(95), - [sym_extends_clause] = STATE(96), - [ts_builtin_sym_end] = ACTIONS(210), - [anon_sym_package] = ACTIONS(210), - [anon_sym_import] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_case] = ACTIONS(210), - [anon_sym_object] = ACTIONS(210), - [anon_sym_class] = ACTIONS(210), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_val] = ACTIONS(210), - [anon_sym_var] = ACTIONS(210), - [anon_sym_type] = ACTIONS(210), - [anon_sym_def] = ACTIONS(210), - [anon_sym_abstract] = ACTIONS(210), - [anon_sym_final] = ACTIONS(210), - [anon_sym_sealed] = ACTIONS(210), - [anon_sym_implicit] = ACTIONS(210), - [anon_sym_lazy] = ACTIONS(210), - [anon_sym_override] = ACTIONS(210), - [anon_sym_private] = ACTIONS(210), - [anon_sym_protected] = ACTIONS(210), - [anon_sym_extends] = ACTIONS(104), + [sym_template_body] = STATE(101), + [ts_builtin_sym_end] = ACTIONS(222), + [anon_sym_package] = ACTIONS(222), + [anon_sym_import] = ACTIONS(222), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_case] = ACTIONS(222), + [anon_sym_object] = ACTIONS(222), + [anon_sym_class] = ACTIONS(222), + [anon_sym_trait] = ACTIONS(222), + [anon_sym_val] = ACTIONS(222), + [anon_sym_var] = ACTIONS(222), + [anon_sym_type] = ACTIONS(222), + [anon_sym_def] = ACTIONS(222), + [anon_sym_abstract] = ACTIONS(222), + [anon_sym_final] = ACTIONS(222), + [anon_sym_sealed] = ACTIONS(222), + [anon_sym_implicit] = ACTIONS(222), + [anon_sym_lazy] = ACTIONS(222), + [anon_sym_override] = ACTIONS(222), + [anon_sym_private] = ACTIONS(222), + [anon_sym_protected] = ACTIONS(222), [sym_comment] = ACTIONS(34), }, [56] = { - [sym__type] = STATE(121), - [sym_compound_type] = STATE(122), - [sym_infix_type] = STATE(122), - [sym_stable_type_identifier] = STATE(123), - [sym_stable_identifier] = STATE(124), - [sym_generic_type] = STATE(122), - [sym_function_type] = STATE(122), - [sym_parameter_types] = STATE(125), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(242), + [sym_template_body] = STATE(101), + [sym_extends_clause] = STATE(102), + [ts_builtin_sym_end] = ACTIONS(222), + [anon_sym_package] = ACTIONS(222), + [anon_sym_import] = ACTIONS(222), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_case] = ACTIONS(222), + [anon_sym_object] = ACTIONS(222), + [anon_sym_class] = ACTIONS(222), + [anon_sym_trait] = ACTIONS(222), + [anon_sym_val] = ACTIONS(222), + [anon_sym_var] = ACTIONS(222), + [anon_sym_type] = ACTIONS(222), + [anon_sym_def] = ACTIONS(222), + [anon_sym_abstract] = ACTIONS(222), + [anon_sym_final] = ACTIONS(222), + [anon_sym_sealed] = ACTIONS(222), + [anon_sym_implicit] = ACTIONS(222), + [anon_sym_lazy] = ACTIONS(222), + [anon_sym_override] = ACTIONS(222), + [anon_sym_private] = ACTIONS(222), + [anon_sym_protected] = ACTIONS(222), + [anon_sym_extends] = ACTIONS(108), [sym_comment] = ACTIONS(34), }, [57] = { - [sym_template_body] = STATE(126), - [sym_extends_clause] = STATE(127), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_extends] = ACTIONS(108), + [sym__type] = STATE(127), + [sym_compound_type] = STATE(128), + [sym_infix_type] = STATE(128), + [sym_stable_type_identifier] = STATE(129), + [sym_stable_identifier] = STATE(130), + [sym_generic_type] = STATE(128), + [sym_function_type] = STATE(128), + [sym_parameter_types] = STATE(131), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(254), [sym_comment] = ACTIONS(34), }, [58] = { - [ts_builtin_sym_end] = ACTIONS(244), - [anon_sym_package] = ACTIONS(244), - [anon_sym_import] = ACTIONS(244), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(244), - [anon_sym_object] = ACTIONS(244), - [anon_sym_class] = ACTIONS(244), - [anon_sym_trait] = ACTIONS(244), - [anon_sym_val] = ACTIONS(244), - [anon_sym_var] = ACTIONS(244), - [anon_sym_type] = ACTIONS(244), - [anon_sym_def] = ACTIONS(244), - [anon_sym_abstract] = ACTIONS(244), - [anon_sym_final] = ACTIONS(244), - [anon_sym_sealed] = ACTIONS(244), - [anon_sym_implicit] = ACTIONS(244), - [anon_sym_lazy] = ACTIONS(244), - [anon_sym_override] = ACTIONS(244), - [anon_sym_private] = ACTIONS(244), - [anon_sym_protected] = ACTIONS(244), + [sym_template_body] = STATE(132), + [sym_extends_clause] = STATE(133), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_extends] = ACTIONS(112), [sym_comment] = ACTIONS(34), }, [59] = { - [sym_template_body] = STATE(126), - [anon_sym_LBRACE] = ACTIONS(98), + [ts_builtin_sym_end] = ACTIONS(256), + [anon_sym_package] = ACTIONS(256), + [anon_sym_import] = ACTIONS(256), + [anon_sym_RBRACE] = ACTIONS(256), + [anon_sym_case] = ACTIONS(256), + [anon_sym_object] = ACTIONS(256), + [anon_sym_class] = ACTIONS(256), + [anon_sym_trait] = ACTIONS(256), + [anon_sym_val] = ACTIONS(256), + [anon_sym_var] = ACTIONS(256), + [anon_sym_type] = ACTIONS(256), + [anon_sym_def] = ACTIONS(256), + [anon_sym_abstract] = ACTIONS(256), + [anon_sym_final] = ACTIONS(256), + [anon_sym_sealed] = ACTIONS(256), + [anon_sym_implicit] = ACTIONS(256), + [anon_sym_lazy] = ACTIONS(256), + [anon_sym_override] = ACTIONS(256), + [anon_sym_private] = ACTIONS(256), + [anon_sym_protected] = ACTIONS(256), [sym_comment] = ACTIONS(34), }, [60] = { - [sym_block] = STATE(129), - [anon_sym_LBRACE] = ACTIONS(246), - [sym_identifier] = ACTIONS(248), + [sym_template_body] = STATE(132), + [anon_sym_LBRACE] = ACTIONS(102), [sym_comment] = ACTIONS(34), }, [61] = { - [aux_sym_string_repeat1] = STATE(132), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(252), + [sym_block] = STATE(135), + [anon_sym_LBRACE] = ACTIONS(258), + [sym_identifier] = ACTIONS(260), [sym_comment] = ACTIONS(34), }, [62] = { - [sym_block] = STATE(134), - [anon_sym_LBRACE] = ACTIONS(254), - [sym_identifier] = ACTIONS(256), + [aux_sym_string_repeat1] = STATE(138), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(264), [sym_comment] = ACTIONS(34), }, [63] = { - [aux_sym_string_repeat2] = STATE(136), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(252), + [sym_block] = STATE(140), + [anon_sym_LBRACE] = ACTIONS(266), + [sym_identifier] = ACTIONS(268), [sym_comment] = ACTIONS(34), }, [64] = { - [aux_sym_case_class_pattern_repeat1] = STATE(140), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_RPAREN] = ACTIONS(264), - [anon_sym_PIPE] = ACTIONS(136), + [aux_sym_string_repeat2] = STATE(142), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(264), [sym_comment] = ACTIONS(34), }, [65] = { - [aux_sym_case_class_pattern_repeat1] = STATE(140), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(262), - [anon_sym_RPAREN] = ACTIONS(264), - [anon_sym_PIPE] = ACTIONS(136), + [aux_sym_case_class_pattern_repeat1] = STATE(146), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(276), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [66] = { - [sym_identifier] = ACTIONS(266), + [aux_sym_case_class_pattern_repeat1] = STATE(146), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_RPAREN] = ACTIONS(276), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [67] = { - [sym_identifier] = ACTIONS(268), + [sym_identifier] = ACTIONS(278), [sym_comment] = ACTIONS(34), }, [68] = { - [sym__type] = STATE(144), - [sym_compound_type] = STATE(145), - [sym_infix_type] = STATE(145), - [sym_stable_type_identifier] = STATE(146), - [sym_stable_identifier] = STATE(147), - [sym_generic_type] = STATE(145), - [sym_function_type] = STATE(145), - [sym_parameter_types] = STATE(148), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(270), + [sym_identifier] = ACTIONS(280), [sym_comment] = ACTIONS(34), }, [69] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(159), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), + [sym__type] = STATE(150), + [sym_compound_type] = STATE(151), + [sym_infix_type] = STATE(151), + [sym_stable_type_identifier] = STATE(152), + [sym_stable_identifier] = STATE(153), + [sym_generic_type] = STATE(151), + [sym_function_type] = STATE(151), + [sym_parameter_types] = STATE(154), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(282), [sym_comment] = ACTIONS(34), }, [70] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(162), - [sym_alternative_pattern] = STATE(162), - [sym_typed_pattern] = STATE(162), - [sym_tuple_pattern] = STATE(162), - [sym_parenthesized_pattern] = STATE(162), - [sym_wildcard] = STATE(162), - [sym_string] = STATE(162), + [sym_block] = STATE(164), + [sym__expression] = STATE(165), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), + [sym_comment] = ACTIONS(34), + }, + [71] = { + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(168), + [sym_alternative_pattern] = STATE(168), + [sym_typed_pattern] = STATE(168), + [sym_tuple_pattern] = STATE(168), + [sym_parenthesized_pattern] = STATE(168), + [sym_wildcard] = STATE(168), + [sym_string] = STATE(168), [sym__simple_string] = ACTIONS(50), [sym__string_start] = ACTIONS(52), [sym__multiline_string_start] = ACTIONS(54), [anon_sym__] = ACTIONS(56), [anon_sym_LPAREN] = ACTIONS(58), - [anon_sym_RPAREN] = ACTIONS(292), - [sym_identifier] = ACTIONS(294), - [sym_number] = ACTIONS(296), + [anon_sym_RPAREN] = ACTIONS(304), + [sym_identifier] = ACTIONS(306), + [sym_number] = ACTIONS(308), [sym_comment] = ACTIONS(34), }, - [71] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(164), - [sym_alternative_pattern] = STATE(164), - [sym_typed_pattern] = STATE(164), - [sym_tuple_pattern] = STATE(164), - [sym_parenthesized_pattern] = STATE(164), - [sym_wildcard] = STATE(164), - [sym_string] = STATE(164), + [72] = { + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(170), + [sym_alternative_pattern] = STATE(170), + [sym_typed_pattern] = STATE(170), + [sym_tuple_pattern] = STATE(170), + [sym_parenthesized_pattern] = STATE(170), + [sym_wildcard] = STATE(170), + [sym_string] = STATE(170), [sym__simple_string] = ACTIONS(50), [sym__string_start] = ACTIONS(52), [sym__multiline_string_start] = ACTIONS(54), [anon_sym__] = ACTIONS(56), [anon_sym_LPAREN] = ACTIONS(58), - [sym_identifier] = ACTIONS(298), - [sym_number] = ACTIONS(300), - [sym_comment] = ACTIONS(34), - }, - [72] = { - [aux_sym_val_declaration_repeat1] = STATE(166), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(302), + [sym_identifier] = ACTIONS(310), + [sym_number] = ACTIONS(312), [sym_comment] = ACTIONS(34), }, [73] = { - [sym__type] = STATE(168), - [sym_compound_type] = STATE(169), - [sym_infix_type] = STATE(169), - [sym_stable_type_identifier] = STATE(170), - [sym_stable_identifier] = STATE(171), - [sym_generic_type] = STATE(169), - [sym_function_type] = STATE(169), - [sym_parameter_types] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(304), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(314), [sym_comment] = ACTIONS(34), }, [74] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(175), - [sym_alternative_pattern] = STATE(175), - [sym_typed_pattern] = STATE(175), - [sym_tuple_pattern] = STATE(175), - [sym_parenthesized_pattern] = STATE(175), - [sym_wildcard] = STATE(175), - [sym_string] = STATE(175), + [sym__type] = STATE(174), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), + [sym_comment] = ACTIONS(34), + }, + [75] = { + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(181), + [sym_alternative_pattern] = STATE(181), + [sym_typed_pattern] = STATE(181), + [sym_tuple_pattern] = STATE(181), + [sym_parenthesized_pattern] = STATE(181), + [sym_wildcard] = STATE(181), + [sym_string] = STATE(181), [sym__simple_string] = ACTIONS(50), [sym__string_start] = ACTIONS(52), [sym__multiline_string_start] = ACTIONS(54), [anon_sym__] = ACTIONS(56), [anon_sym_LPAREN] = ACTIONS(58), - [anon_sym_RPAREN] = ACTIONS(306), - [sym_identifier] = ACTIONS(308), - [sym_number] = ACTIONS(310), - [sym_comment] = ACTIONS(34), - }, - [75] = { - [sym__type] = STATE(176), - [sym_compound_type] = STATE(145), - [sym_infix_type] = STATE(145), - [sym_stable_type_identifier] = STATE(146), - [sym_stable_identifier] = STATE(147), - [sym_generic_type] = STATE(145), - [sym_function_type] = STATE(145), - [sym_parameter_types] = STATE(148), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(270), + [anon_sym_RPAREN] = ACTIONS(318), + [sym_identifier] = ACTIONS(320), + [sym_number] = ACTIONS(322), [sym_comment] = ACTIONS(34), }, [76] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(177), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), + [sym__type] = STATE(182), + [sym_compound_type] = STATE(151), + [sym_infix_type] = STATE(151), + [sym_stable_type_identifier] = STATE(152), + [sym_stable_identifier] = STATE(153), + [sym_generic_type] = STATE(151), + [sym_function_type] = STATE(151), + [sym_parameter_types] = STATE(154), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(282), [sym_comment] = ACTIONS(34), }, [77] = { - [aux_sym_val_declaration_repeat1] = STATE(166), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(312), + [sym_block] = STATE(164), + [sym__expression] = STATE(183), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [78] = { - [sym__type] = STATE(179), - [sym_compound_type] = STATE(169), - [sym_infix_type] = STATE(169), - [sym_stable_type_identifier] = STATE(170), - [sym_stable_identifier] = STATE(171), - [sym_generic_type] = STATE(169), - [sym_function_type] = STATE(169), - [sym_parameter_types] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(304), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(324), [sym_comment] = ACTIONS(34), }, [79] = { - [sym__type] = STATE(181), - [sym_compound_type] = STATE(182), - [sym_infix_type] = STATE(182), - [sym_stable_type_identifier] = STATE(183), - [sym_stable_identifier] = STATE(184), - [sym_generic_type] = STATE(182), - [sym_function_type] = STATE(182), - [sym_parameter_types] = STATE(185), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(314), + [sym__type] = STATE(185), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), [sym_comment] = ACTIONS(34), }, [80] = { - [anon_sym_EQ] = ACTIONS(316), + [sym__type] = STATE(187), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(34), }, [81] = { - [sym_package_clause] = STATE(208), - [sym_import_declaration] = STATE(208), - [sym_object_definition] = STATE(208), - [sym_class_definition] = STATE(208), - [sym_trait_definition] = STATE(208), - [sym_val_definition] = STATE(208), - [sym_val_declaration] = STATE(208), - [sym_var_declaration] = STATE(208), - [sym_var_definition] = STATE(208), - [sym_type_definition] = STATE(208), - [sym_function_definition] = STATE(208), - [sym_function_declaration] = STATE(208), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(210), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [anon_sym_EQ] = ACTIONS(328), [sym_comment] = ACTIONS(34), }, [82] = { - [sym__type] = STATE(212), - [sym_compound_type] = STATE(213), - [sym_infix_type] = STATE(213), - [sym_stable_type_identifier] = STATE(214), - [sym_stable_identifier] = STATE(215), - [sym_generic_type] = STATE(213), - [sym_function_type] = STATE(213), - [sym_parameter_types] = STATE(216), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(362), + [sym_package_clause] = STATE(214), + [sym_import_declaration] = STATE(214), + [sym_object_definition] = STATE(214), + [sym_class_definition] = STATE(214), + [sym_trait_definition] = STATE(214), + [sym_val_definition] = STATE(214), + [sym_val_declaration] = STATE(214), + [sym_var_declaration] = STATE(214), + [sym_var_definition] = STATE(214), + [sym_type_definition] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_function_declaration] = STATE(214), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(216), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(342), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [83] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(217), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), + [sym__type] = STATE(218), + [sym_compound_type] = STATE(219), + [sym_infix_type] = STATE(219), + [sym_stable_type_identifier] = STATE(220), + [sym_stable_identifier] = STATE(221), + [sym_generic_type] = STATE(219), + [sym_function_type] = STATE(219), + [sym_parameter_types] = STATE(222), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(374), [sym_comment] = ACTIONS(34), }, [84] = { - [sym_parameter] = STATE(220), - [anon_sym_RPAREN] = ACTIONS(364), - [sym_identifier] = ACTIONS(366), + [sym_block] = STATE(164), + [sym__expression] = STATE(223), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [85] = { - [sym_parameters] = STATE(223), - [sym_block] = STATE(224), - [ts_builtin_sym_end] = ACTIONS(368), - [anon_sym_package] = ACTIONS(368), - [anon_sym_import] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_case] = ACTIONS(368), - [anon_sym_object] = ACTIONS(368), - [anon_sym_class] = ACTIONS(368), - [anon_sym_trait] = ACTIONS(368), - [anon_sym_val] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(370), - [anon_sym_EQ] = ACTIONS(372), - [anon_sym_var] = ACTIONS(368), - [anon_sym_type] = ACTIONS(368), - [anon_sym_def] = ACTIONS(368), - [anon_sym_abstract] = ACTIONS(368), - [anon_sym_final] = ACTIONS(368), - [anon_sym_sealed] = ACTIONS(368), - [anon_sym_implicit] = ACTIONS(368), - [anon_sym_lazy] = ACTIONS(368), - [anon_sym_override] = ACTIONS(368), - [anon_sym_private] = ACTIONS(368), - [anon_sym_protected] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(158), + [sym_parameter] = STATE(226), + [anon_sym_RPAREN] = ACTIONS(376), + [sym_identifier] = ACTIONS(378), [sym_comment] = ACTIONS(34), }, [86] = { - [sym_block] = STATE(224), - [ts_builtin_sym_end] = ACTIONS(368), - [anon_sym_package] = ACTIONS(368), - [anon_sym_import] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_case] = ACTIONS(368), - [anon_sym_object] = ACTIONS(368), - [anon_sym_class] = ACTIONS(368), - [anon_sym_trait] = ACTIONS(368), - [anon_sym_val] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(370), - [anon_sym_EQ] = ACTIONS(372), - [anon_sym_var] = ACTIONS(368), - [anon_sym_type] = ACTIONS(368), - [anon_sym_def] = ACTIONS(368), - [anon_sym_abstract] = ACTIONS(368), - [anon_sym_final] = ACTIONS(368), - [anon_sym_sealed] = ACTIONS(368), - [anon_sym_implicit] = ACTIONS(368), - [anon_sym_lazy] = ACTIONS(368), - [anon_sym_override] = ACTIONS(368), - [anon_sym_private] = ACTIONS(368), - [anon_sym_protected] = ACTIONS(368), + [sym_parameters] = STATE(229), + [sym_block] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(380), + [anon_sym_package] = ACTIONS(380), + [anon_sym_import] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_case] = ACTIONS(380), + [anon_sym_object] = ACTIONS(380), + [anon_sym_class] = ACTIONS(380), + [anon_sym_trait] = ACTIONS(380), + [anon_sym_val] = ACTIONS(380), + [anon_sym_COLON] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(384), + [anon_sym_var] = ACTIONS(380), + [anon_sym_type] = ACTIONS(380), + [anon_sym_def] = ACTIONS(380), + [anon_sym_abstract] = ACTIONS(380), + [anon_sym_final] = ACTIONS(380), + [anon_sym_sealed] = ACTIONS(380), + [anon_sym_implicit] = ACTIONS(380), + [anon_sym_lazy] = ACTIONS(380), + [anon_sym_override] = ACTIONS(380), + [anon_sym_private] = ACTIONS(380), + [anon_sym_protected] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(162), [sym_comment] = ACTIONS(34), }, [87] = { - [ts_builtin_sym_end] = ACTIONS(374), - [anon_sym_package] = ACTIONS(374), - [anon_sym_import] = ACTIONS(374), - [anon_sym_RBRACE] = ACTIONS(374), - [anon_sym_case] = ACTIONS(374), - [anon_sym_object] = ACTIONS(374), - [anon_sym_class] = ACTIONS(374), - [anon_sym_trait] = ACTIONS(374), - [anon_sym_val] = ACTIONS(374), - [anon_sym_var] = ACTIONS(374), - [anon_sym_type] = ACTIONS(374), - [anon_sym_def] = ACTIONS(374), - [anon_sym_abstract] = ACTIONS(374), - [anon_sym_final] = ACTIONS(374), - [anon_sym_sealed] = ACTIONS(374), - [anon_sym_implicit] = ACTIONS(374), - [anon_sym_lazy] = ACTIONS(374), - [anon_sym_override] = ACTIONS(374), - [anon_sym_private] = ACTIONS(374), - [anon_sym_protected] = ACTIONS(374), + [sym_block] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(380), + [anon_sym_package] = ACTIONS(380), + [anon_sym_import] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_case] = ACTIONS(380), + [anon_sym_object] = ACTIONS(380), + [anon_sym_class] = ACTIONS(380), + [anon_sym_trait] = ACTIONS(380), + [anon_sym_val] = ACTIONS(380), + [anon_sym_COLON] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(384), + [anon_sym_var] = ACTIONS(380), + [anon_sym_type] = ACTIONS(380), + [anon_sym_def] = ACTIONS(380), + [anon_sym_abstract] = ACTIONS(380), + [anon_sym_final] = ACTIONS(380), + [anon_sym_sealed] = ACTIONS(380), + [anon_sym_implicit] = ACTIONS(380), + [anon_sym_lazy] = ACTIONS(380), + [anon_sym_override] = ACTIONS(380), + [anon_sym_private] = ACTIONS(380), + [anon_sym_protected] = ACTIONS(380), [sym_comment] = ACTIONS(34), }, [88] = { - [sym_identifier] = ACTIONS(376), - [sym_comment] = ACTIONS(34), - }, - [89] = { - [sym_type_parameters] = STATE(226), - [sym_parameters] = STATE(223), - [sym_block] = STATE(224), - [ts_builtin_sym_end] = ACTIONS(368), - [anon_sym_package] = ACTIONS(368), - [anon_sym_import] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_case] = ACTIONS(368), - [anon_sym_object] = ACTIONS(368), - [anon_sym_class] = ACTIONS(368), - [anon_sym_trait] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_val] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(370), - [anon_sym_EQ] = ACTIONS(372), - [anon_sym_var] = ACTIONS(368), - [anon_sym_type] = ACTIONS(368), - [anon_sym_def] = ACTIONS(368), - [anon_sym_abstract] = ACTIONS(368), - [anon_sym_final] = ACTIONS(368), - [anon_sym_sealed] = ACTIONS(368), - [anon_sym_implicit] = ACTIONS(368), - [anon_sym_lazy] = ACTIONS(368), - [anon_sym_override] = ACTIONS(368), - [anon_sym_private] = ACTIONS(368), - [anon_sym_protected] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(34), - }, - [90] = { - [ts_builtin_sym_end] = ACTIONS(378), - [anon_sym_package] = ACTIONS(378), - [anon_sym_import] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(378), - [anon_sym_case] = ACTIONS(378), - [anon_sym_object] = ACTIONS(378), - [anon_sym_class] = ACTIONS(378), - [anon_sym_trait] = ACTIONS(378), - [anon_sym_val] = ACTIONS(378), - [anon_sym_var] = ACTIONS(378), - [anon_sym_type] = ACTIONS(378), - [anon_sym_def] = ACTIONS(378), - [anon_sym_abstract] = ACTIONS(378), - [anon_sym_final] = ACTIONS(378), - [anon_sym_sealed] = ACTIONS(378), - [anon_sym_implicit] = ACTIONS(378), - [anon_sym_lazy] = ACTIONS(378), - [anon_sym_override] = ACTIONS(378), - [anon_sym_private] = ACTIONS(378), - [anon_sym_protected] = ACTIONS(378), - [sym_comment] = ACTIONS(34), - }, - [91] = { - [sym_renamed_identifier] = STATE(228), - [sym_identifier] = ACTIONS(380), - [sym_comment] = ACTIONS(34), - }, - [92] = { - [ts_builtin_sym_end] = ACTIONS(382), - [anon_sym_package] = ACTIONS(382), - [anon_sym_import] = ACTIONS(382), - [anon_sym_RBRACE] = ACTIONS(382), - [anon_sym_case] = ACTIONS(382), - [anon_sym_object] = ACTIONS(382), - [anon_sym_class] = ACTIONS(382), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_val] = ACTIONS(382), - [anon_sym_var] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_def] = ACTIONS(382), - [anon_sym_abstract] = ACTIONS(382), - [anon_sym_final] = ACTIONS(382), - [anon_sym_sealed] = ACTIONS(382), - [anon_sym_implicit] = ACTIONS(382), - [anon_sym_lazy] = ACTIONS(382), - [anon_sym_override] = ACTIONS(382), - [anon_sym_private] = ACTIONS(382), - [anon_sym_protected] = ACTIONS(382), - [sym_comment] = ACTIONS(34), - }, - [93] = { - [ts_builtin_sym_end] = ACTIONS(384), - [anon_sym_package] = ACTIONS(384), - [anon_sym_import] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_case] = ACTIONS(384), - [anon_sym_object] = ACTIONS(384), - [anon_sym_class] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(384), - [anon_sym_val] = ACTIONS(384), - [anon_sym_var] = ACTIONS(384), - [anon_sym_type] = ACTIONS(384), - [anon_sym_def] = ACTIONS(384), - [anon_sym_abstract] = ACTIONS(384), - [anon_sym_final] = ACTIONS(384), - [anon_sym_sealed] = ACTIONS(384), - [anon_sym_implicit] = ACTIONS(384), - [anon_sym_lazy] = ACTIONS(384), - [anon_sym_override] = ACTIONS(384), - [anon_sym_private] = ACTIONS(384), - [anon_sym_protected] = ACTIONS(384), - [sym_comment] = ACTIONS(34), - }, - [94] = { - [sym_template_body] = STATE(229), - [sym_extends_clause] = STATE(230), - [sym_class_parameters] = STATE(231), [ts_builtin_sym_end] = ACTIONS(386), [anon_sym_package] = ACTIONS(386), [anon_sym_import] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(98), + [anon_sym_RBRACE] = ACTIONS(386), [anon_sym_case] = ACTIONS(386), [anon_sym_object] = ACTIONS(386), [anon_sym_class] = ACTIONS(386), @@ -7531,169 +8138,345 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(386), [anon_sym_private] = ACTIONS(386), [anon_sym_protected] = ACTIONS(386), - [anon_sym_extends] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(106), + [sym_comment] = ACTIONS(34), + }, + [89] = { + [sym_identifier] = ACTIONS(388), + [sym_comment] = ACTIONS(34), + }, + [90] = { + [aux_sym_val_declaration_repeat1] = STATE(234), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), + }, + [91] = { + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), + }, + [92] = { + [aux_sym_val_declaration_repeat1] = STATE(238), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), + }, + [93] = { + [anon_sym_COLON] = ACTIONS(400), + [anon_sym_EQ] = ACTIONS(398), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), + }, + [94] = { + [sym_type_parameters] = STATE(241), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(402), [sym_comment] = ACTIONS(34), }, [95] = { - [ts_builtin_sym_end] = ACTIONS(386), - [anon_sym_package] = ACTIONS(386), - [anon_sym_import] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(386), - [anon_sym_case] = ACTIONS(386), - [anon_sym_object] = ACTIONS(386), - [anon_sym_class] = ACTIONS(386), - [anon_sym_trait] = ACTIONS(386), - [anon_sym_val] = ACTIONS(386), - [anon_sym_var] = ACTIONS(386), - [anon_sym_type] = ACTIONS(386), - [anon_sym_def] = ACTIONS(386), - [anon_sym_abstract] = ACTIONS(386), - [anon_sym_final] = ACTIONS(386), - [anon_sym_sealed] = ACTIONS(386), - [anon_sym_implicit] = ACTIONS(386), - [anon_sym_lazy] = ACTIONS(386), - [anon_sym_override] = ACTIONS(386), - [anon_sym_private] = ACTIONS(386), - [anon_sym_protected] = ACTIONS(386), + [sym_type_parameters] = STATE(242), + [sym_parameters] = STATE(229), + [sym_block] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(380), + [anon_sym_package] = ACTIONS(380), + [anon_sym_import] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_case] = ACTIONS(380), + [anon_sym_object] = ACTIONS(380), + [anon_sym_class] = ACTIONS(380), + [anon_sym_trait] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_val] = ACTIONS(380), + [anon_sym_COLON] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(384), + [anon_sym_var] = ACTIONS(380), + [anon_sym_type] = ACTIONS(380), + [anon_sym_def] = ACTIONS(380), + [anon_sym_abstract] = ACTIONS(380), + [anon_sym_final] = ACTIONS(380), + [anon_sym_sealed] = ACTIONS(380), + [anon_sym_implicit] = ACTIONS(380), + [anon_sym_lazy] = ACTIONS(380), + [anon_sym_override] = ACTIONS(380), + [anon_sym_private] = ACTIONS(380), + [anon_sym_protected] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(162), [sym_comment] = ACTIONS(34), }, [96] = { - [sym_template_body] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(386), - [anon_sym_package] = ACTIONS(386), - [anon_sym_import] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(386), - [anon_sym_case] = ACTIONS(386), - [anon_sym_object] = ACTIONS(386), - [anon_sym_class] = ACTIONS(386), - [anon_sym_trait] = ACTIONS(386), - [anon_sym_val] = ACTIONS(386), - [anon_sym_var] = ACTIONS(386), - [anon_sym_type] = ACTIONS(386), - [anon_sym_def] = ACTIONS(386), - [anon_sym_abstract] = ACTIONS(386), - [anon_sym_final] = ACTIONS(386), - [anon_sym_sealed] = ACTIONS(386), - [anon_sym_implicit] = ACTIONS(386), - [anon_sym_lazy] = ACTIONS(386), - [anon_sym_override] = ACTIONS(386), - [anon_sym_private] = ACTIONS(386), - [anon_sym_protected] = ACTIONS(386), + [sym_renamed_identifier] = STATE(244), + [sym_identifier] = ACTIONS(404), [sym_comment] = ACTIONS(34), }, [97] = { - [sym_template_body] = STATE(229), - [sym_extends_clause] = STATE(230), - [ts_builtin_sym_end] = ACTIONS(386), - [anon_sym_package] = ACTIONS(386), - [anon_sym_import] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_case] = ACTIONS(386), - [anon_sym_object] = ACTIONS(386), - [anon_sym_class] = ACTIONS(386), - [anon_sym_trait] = ACTIONS(386), - [anon_sym_val] = ACTIONS(386), - [anon_sym_var] = ACTIONS(386), - [anon_sym_type] = ACTIONS(386), - [anon_sym_def] = ACTIONS(386), - [anon_sym_abstract] = ACTIONS(386), - [anon_sym_final] = ACTIONS(386), - [anon_sym_sealed] = ACTIONS(386), - [anon_sym_implicit] = ACTIONS(386), - [anon_sym_lazy] = ACTIONS(386), - [anon_sym_override] = ACTIONS(386), - [anon_sym_private] = ACTIONS(386), - [anon_sym_protected] = ACTIONS(386), - [anon_sym_extends] = ACTIONS(104), + [ts_builtin_sym_end] = ACTIONS(406), + [anon_sym_package] = ACTIONS(406), + [anon_sym_import] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_case] = ACTIONS(406), + [anon_sym_object] = ACTIONS(406), + [anon_sym_class] = ACTIONS(406), + [anon_sym_trait] = ACTIONS(406), + [anon_sym_val] = ACTIONS(406), + [anon_sym_var] = ACTIONS(406), + [anon_sym_type] = ACTIONS(406), + [anon_sym_def] = ACTIONS(406), + [anon_sym_abstract] = ACTIONS(406), + [anon_sym_final] = ACTIONS(406), + [anon_sym_sealed] = ACTIONS(406), + [anon_sym_implicit] = ACTIONS(406), + [anon_sym_lazy] = ACTIONS(406), + [anon_sym_override] = ACTIONS(406), + [anon_sym_private] = ACTIONS(406), + [anon_sym_protected] = ACTIONS(406), [sym_comment] = ACTIONS(34), }, [98] = { - [ts_builtin_sym_end] = ACTIONS(388), - [anon_sym_package] = ACTIONS(388), - [anon_sym_import] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_case] = ACTIONS(388), - [anon_sym_object] = ACTIONS(388), - [anon_sym_class] = ACTIONS(388), - [anon_sym_trait] = ACTIONS(388), - [anon_sym_val] = ACTIONS(388), - [anon_sym_var] = ACTIONS(388), - [anon_sym_type] = ACTIONS(388), - [anon_sym_def] = ACTIONS(388), - [anon_sym_abstract] = ACTIONS(388), - [anon_sym_final] = ACTIONS(388), - [anon_sym_sealed] = ACTIONS(388), - [anon_sym_implicit] = ACTIONS(388), - [anon_sym_lazy] = ACTIONS(388), - [anon_sym_override] = ACTIONS(388), - [anon_sym_private] = ACTIONS(388), - [anon_sym_protected] = ACTIONS(388), + [ts_builtin_sym_end] = ACTIONS(408), + [anon_sym_package] = ACTIONS(408), + [anon_sym_import] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(408), + [anon_sym_case] = ACTIONS(408), + [anon_sym_object] = ACTIONS(408), + [anon_sym_class] = ACTIONS(408), + [anon_sym_trait] = ACTIONS(408), + [anon_sym_val] = ACTIONS(408), + [anon_sym_var] = ACTIONS(408), + [anon_sym_type] = ACTIONS(408), + [anon_sym_def] = ACTIONS(408), + [anon_sym_abstract] = ACTIONS(408), + [anon_sym_final] = ACTIONS(408), + [anon_sym_sealed] = ACTIONS(408), + [anon_sym_implicit] = ACTIONS(408), + [anon_sym_lazy] = ACTIONS(408), + [anon_sym_override] = ACTIONS(408), + [anon_sym_private] = ACTIONS(408), + [anon_sym_protected] = ACTIONS(408), [sym_comment] = ACTIONS(34), }, [99] = { - [anon_sym_object] = ACTIONS(40), - [anon_sym_class] = ACTIONS(390), + [ts_builtin_sym_end] = ACTIONS(410), + [anon_sym_package] = ACTIONS(410), + [anon_sym_import] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_case] = ACTIONS(410), + [anon_sym_object] = ACTIONS(410), + [anon_sym_class] = ACTIONS(410), + [anon_sym_trait] = ACTIONS(410), + [anon_sym_val] = ACTIONS(410), + [anon_sym_var] = ACTIONS(410), + [anon_sym_type] = ACTIONS(410), + [anon_sym_def] = ACTIONS(410), + [anon_sym_abstract] = ACTIONS(410), + [anon_sym_final] = ACTIONS(410), + [anon_sym_sealed] = ACTIONS(410), + [anon_sym_implicit] = ACTIONS(410), + [anon_sym_lazy] = ACTIONS(410), + [anon_sym_override] = ACTIONS(410), + [anon_sym_private] = ACTIONS(410), + [anon_sym_protected] = ACTIONS(410), [sym_comment] = ACTIONS(34), }, [100] = { - [sym_identifier] = ACTIONS(392), + [sym_template_body] = STATE(245), + [sym_extends_clause] = STATE(246), + [sym_class_parameters] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(412), + [anon_sym_package] = ACTIONS(412), + [anon_sym_import] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_case] = ACTIONS(412), + [anon_sym_object] = ACTIONS(412), + [anon_sym_class] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_val] = ACTIONS(412), + [anon_sym_var] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_def] = ACTIONS(412), + [anon_sym_abstract] = ACTIONS(412), + [anon_sym_final] = ACTIONS(412), + [anon_sym_sealed] = ACTIONS(412), + [anon_sym_implicit] = ACTIONS(412), + [anon_sym_lazy] = ACTIONS(412), + [anon_sym_override] = ACTIONS(412), + [anon_sym_private] = ACTIONS(412), + [anon_sym_protected] = ACTIONS(412), + [anon_sym_extends] = ACTIONS(108), + [anon_sym_LPAREN] = ACTIONS(110), [sym_comment] = ACTIONS(34), }, [101] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(235), - [sym_alternative_pattern] = STATE(235), - [sym_typed_pattern] = STATE(235), - [sym_tuple_pattern] = STATE(235), - [sym_parenthesized_pattern] = STATE(235), - [sym_wildcard] = STATE(235), - [sym_string] = STATE(235), + [ts_builtin_sym_end] = ACTIONS(412), + [anon_sym_package] = ACTIONS(412), + [anon_sym_import] = ACTIONS(412), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_case] = ACTIONS(412), + [anon_sym_object] = ACTIONS(412), + [anon_sym_class] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_val] = ACTIONS(412), + [anon_sym_var] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_def] = ACTIONS(412), + [anon_sym_abstract] = ACTIONS(412), + [anon_sym_final] = ACTIONS(412), + [anon_sym_sealed] = ACTIONS(412), + [anon_sym_implicit] = ACTIONS(412), + [anon_sym_lazy] = ACTIONS(412), + [anon_sym_override] = ACTIONS(412), + [anon_sym_private] = ACTIONS(412), + [anon_sym_protected] = ACTIONS(412), + [sym_comment] = ACTIONS(34), + }, + [102] = { + [sym_template_body] = STATE(245), + [ts_builtin_sym_end] = ACTIONS(412), + [anon_sym_package] = ACTIONS(412), + [anon_sym_import] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_case] = ACTIONS(412), + [anon_sym_object] = ACTIONS(412), + [anon_sym_class] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_val] = ACTIONS(412), + [anon_sym_var] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_def] = ACTIONS(412), + [anon_sym_abstract] = ACTIONS(412), + [anon_sym_final] = ACTIONS(412), + [anon_sym_sealed] = ACTIONS(412), + [anon_sym_implicit] = ACTIONS(412), + [anon_sym_lazy] = ACTIONS(412), + [anon_sym_override] = ACTIONS(412), + [anon_sym_private] = ACTIONS(412), + [anon_sym_protected] = ACTIONS(412), + [sym_comment] = ACTIONS(34), + }, + [103] = { + [sym_template_body] = STATE(245), + [sym_extends_clause] = STATE(246), + [ts_builtin_sym_end] = ACTIONS(412), + [anon_sym_package] = ACTIONS(412), + [anon_sym_import] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_case] = ACTIONS(412), + [anon_sym_object] = ACTIONS(412), + [anon_sym_class] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_val] = ACTIONS(412), + [anon_sym_var] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_def] = ACTIONS(412), + [anon_sym_abstract] = ACTIONS(412), + [anon_sym_final] = ACTIONS(412), + [anon_sym_sealed] = ACTIONS(412), + [anon_sym_implicit] = ACTIONS(412), + [anon_sym_lazy] = ACTIONS(412), + [anon_sym_override] = ACTIONS(412), + [anon_sym_private] = ACTIONS(412), + [anon_sym_protected] = ACTIONS(412), + [anon_sym_extends] = ACTIONS(108), + [sym_comment] = ACTIONS(34), + }, + [104] = { + [ts_builtin_sym_end] = ACTIONS(414), + [anon_sym_package] = ACTIONS(414), + [anon_sym_import] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_case] = ACTIONS(414), + [anon_sym_object] = ACTIONS(414), + [anon_sym_class] = ACTIONS(414), + [anon_sym_trait] = ACTIONS(414), + [anon_sym_val] = ACTIONS(414), + [anon_sym_var] = ACTIONS(414), + [anon_sym_type] = ACTIONS(414), + [anon_sym_def] = ACTIONS(414), + [anon_sym_abstract] = ACTIONS(414), + [anon_sym_final] = ACTIONS(414), + [anon_sym_sealed] = ACTIONS(414), + [anon_sym_implicit] = ACTIONS(414), + [anon_sym_lazy] = ACTIONS(414), + [anon_sym_override] = ACTIONS(414), + [anon_sym_private] = ACTIONS(414), + [anon_sym_protected] = ACTIONS(414), + [sym_comment] = ACTIONS(34), + }, + [105] = { + [anon_sym_object] = ACTIONS(40), + [anon_sym_class] = ACTIONS(416), + [sym_comment] = ACTIONS(34), + }, + [106] = { + [sym_identifier] = ACTIONS(418), + [sym_comment] = ACTIONS(34), + }, + [107] = { + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(251), + [sym_alternative_pattern] = STATE(251), + [sym_typed_pattern] = STATE(251), + [sym_tuple_pattern] = STATE(251), + [sym_parenthesized_pattern] = STATE(251), + [sym_wildcard] = STATE(251), + [sym_string] = STATE(251), [sym__simple_string] = ACTIONS(50), [sym__string_start] = ACTIONS(52), [sym__multiline_string_start] = ACTIONS(54), [anon_sym__] = ACTIONS(56), [anon_sym_LPAREN] = ACTIONS(58), - [sym_identifier] = ACTIONS(394), - [sym_number] = ACTIONS(396), + [sym_identifier] = ACTIONS(420), + [sym_number] = ACTIONS(422), [sym_comment] = ACTIONS(34), }, - [102] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(237), - [sym_alternative_pattern] = STATE(237), - [sym_typed_pattern] = STATE(237), - [sym_tuple_pattern] = STATE(237), - [sym_parenthesized_pattern] = STATE(237), - [sym_wildcard] = STATE(237), - [sym_string] = STATE(237), + [108] = { + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(253), + [sym_alternative_pattern] = STATE(253), + [sym_typed_pattern] = STATE(253), + [sym_tuple_pattern] = STATE(253), + [sym_parenthesized_pattern] = STATE(253), + [sym_wildcard] = STATE(253), + [sym_string] = STATE(253), [sym__simple_string] = ACTIONS(50), [sym__string_start] = ACTIONS(52), [sym__multiline_string_start] = ACTIONS(54), [anon_sym__] = ACTIONS(56), [anon_sym_LPAREN] = ACTIONS(58), - [sym_identifier] = ACTIONS(398), - [sym_number] = ACTIONS(400), + [sym_identifier] = ACTIONS(424), + [sym_number] = ACTIONS(426), [sym_comment] = ACTIONS(34), }, - [103] = { - [sym_identifier] = ACTIONS(402), + [109] = { + [sym_identifier] = ACTIONS(428), [sym_comment] = ACTIONS(34), }, - [104] = { - [sym_identifier] = ACTIONS(404), + [110] = { + [sym_identifier] = ACTIONS(430), [sym_comment] = ACTIONS(34), }, - [105] = { - [anon_sym_case] = ACTIONS(406), - [anon_sym_class] = ACTIONS(390), - [anon_sym_def] = ACTIONS(408), + [111] = { + [anon_sym_case] = ACTIONS(432), + [anon_sym_class] = ACTIONS(416), + [anon_sym_val] = ACTIONS(434), + [anon_sym_var] = ACTIONS(436), + [anon_sym_type] = ACTIONS(438), + [anon_sym_def] = ACTIONS(440), [sym_comment] = ACTIONS(34), }, - [106] = { + [112] = { [sym_package_clause] = STATE(14), [sym_import_declaration] = STATE(14), [sym_object_definition] = STATE(14), @@ -7706,20 +8489,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_definition] = STATE(14), [sym_function_definition] = STATE(14), [sym_function_declaration] = STATE(14), - [sym_modifiers] = STATE(105), - [aux_sym_compilation_unit_repeat1] = STATE(243), + [sym_modifiers] = STATE(111), + [aux_sym_compilation_unit_repeat1] = STATE(262), [aux_sym_modifiers_repeat1] = STATE(17), [anon_sym_package] = ACTIONS(12), [anon_sym_import] = ACTIONS(14), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_case] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_case] = ACTIONS(226), [anon_sym_object] = ACTIONS(18), - [anon_sym_class] = ACTIONS(216), + [anon_sym_class] = ACTIONS(228), [anon_sym_trait] = ACTIONS(22), - [anon_sym_val] = ACTIONS(218), - [anon_sym_var] = ACTIONS(220), - [anon_sym_type] = ACTIONS(222), - [anon_sym_def] = ACTIONS(224), + [anon_sym_val] = ACTIONS(230), + [anon_sym_var] = ACTIONS(232), + [anon_sym_type] = ACTIONS(234), + [anon_sym_def] = ACTIONS(236), [anon_sym_abstract] = ACTIONS(32), [anon_sym_final] = ACTIONS(32), [anon_sym_sealed] = ACTIONS(32), @@ -7730,2014 +8513,1865 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(32), [sym_comment] = ACTIONS(34), }, - [107] = { - [anon_sym_COMMA] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(412), - [sym_comment] = ACTIONS(34), - }, - [108] = { - [aux_sym_type_parameters_repeat1] = STATE(246), - [anon_sym_COMMA] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(416), - [sym_comment] = ACTIONS(34), - }, - [109] = { - [sym__type] = STATE(249), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(253), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_RPAREN] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), - }, - [110] = { - [sym_type_arguments] = STATE(256), - [ts_builtin_sym_end] = ACTIONS(422), - [anon_sym_package] = ACTIONS(424), - [anon_sym_import] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(426), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(424), - [anon_sym_object] = ACTIONS(424), - [anon_sym_class] = ACTIONS(424), - [anon_sym_trait] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_val] = ACTIONS(424), - [anon_sym_var] = ACTIONS(424), - [anon_sym_type] = ACTIONS(424), - [anon_sym_def] = ACTIONS(424), - [anon_sym_abstract] = ACTIONS(424), - [anon_sym_final] = ACTIONS(424), - [anon_sym_sealed] = ACTIONS(424), - [anon_sym_implicit] = ACTIONS(424), - [anon_sym_lazy] = ACTIONS(424), - [anon_sym_override] = ACTIONS(424), - [anon_sym_private] = ACTIONS(424), - [anon_sym_protected] = ACTIONS(424), - [anon_sym_with] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), - }, - [111] = { - [ts_builtin_sym_end] = ACTIONS(434), - [anon_sym_package] = ACTIONS(436), - [anon_sym_import] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_case] = ACTIONS(436), - [anon_sym_object] = ACTIONS(436), - [anon_sym_class] = ACTIONS(436), - [anon_sym_trait] = ACTIONS(436), - [anon_sym_val] = ACTIONS(436), - [anon_sym_var] = ACTIONS(436), - [anon_sym_type] = ACTIONS(436), - [anon_sym_def] = ACTIONS(436), - [anon_sym_abstract] = ACTIONS(436), - [anon_sym_final] = ACTIONS(436), - [anon_sym_sealed] = ACTIONS(436), - [anon_sym_implicit] = ACTIONS(436), - [anon_sym_lazy] = ACTIONS(436), - [anon_sym_override] = ACTIONS(436), - [anon_sym_private] = ACTIONS(436), - [anon_sym_protected] = ACTIONS(436), - [anon_sym_with] = ACTIONS(438), - [sym_identifier] = ACTIONS(440), - [sym_operator_identifier] = ACTIONS(440), - [sym_comment] = ACTIONS(432), - }, - [112] = { - [ts_builtin_sym_end] = ACTIONS(442), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_val] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), - }, [113] = { - [sym_type_arguments] = STATE(259), - [ts_builtin_sym_end] = ACTIONS(442), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_val] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(444), + [anon_sym_RBRACK] = ACTIONS(444), + [sym_comment] = ACTIONS(34), }, [114] = { - [anon_sym_DOT] = ACTIONS(426), + [aux_sym_type_parameters_repeat1] = STATE(265), + [anon_sym_COMMA] = ACTIONS(446), + [anon_sym_RBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(34), }, [115] = { - [anon_sym_EQ_GT] = ACTIONS(448), + [sym__type] = STATE(268), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(272), + [anon_sym_LPAREN] = ACTIONS(244), + [anon_sym_RPAREN] = ACTIONS(450), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [116] = { - [sym_identifier] = ACTIONS(450), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(275), + [ts_builtin_sym_end] = ACTIONS(454), + [anon_sym_package] = ACTIONS(456), + [anon_sym_import] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(456), + [anon_sym_case] = ACTIONS(456), + [anon_sym_object] = ACTIONS(456), + [anon_sym_class] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(460), + [anon_sym_val] = ACTIONS(456), + [anon_sym_var] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_def] = ACTIONS(456), + [anon_sym_abstract] = ACTIONS(456), + [anon_sym_final] = ACTIONS(456), + [anon_sym_sealed] = ACTIONS(456), + [anon_sym_implicit] = ACTIONS(456), + [anon_sym_lazy] = ACTIONS(456), + [anon_sym_override] = ACTIONS(456), + [anon_sym_private] = ACTIONS(456), + [anon_sym_protected] = ACTIONS(456), + [anon_sym_with] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [117] = { - [ts_builtin_sym_end] = ACTIONS(452), - [anon_sym_package] = ACTIONS(452), - [anon_sym_import] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(452), - [anon_sym_RBRACE] = ACTIONS(452), - [anon_sym_case] = ACTIONS(452), - [anon_sym_object] = ACTIONS(452), - [anon_sym_class] = ACTIONS(452), - [anon_sym_trait] = ACTIONS(452), - [anon_sym_val] = ACTIONS(452), - [anon_sym_var] = ACTIONS(452), - [anon_sym_type] = ACTIONS(452), - [anon_sym_def] = ACTIONS(452), - [anon_sym_abstract] = ACTIONS(452), - [anon_sym_final] = ACTIONS(452), - [anon_sym_sealed] = ACTIONS(452), - [anon_sym_implicit] = ACTIONS(452), - [anon_sym_lazy] = ACTIONS(452), - [anon_sym_override] = ACTIONS(452), - [anon_sym_private] = ACTIONS(452), - [anon_sym_protected] = ACTIONS(452), - [anon_sym_extends] = ACTIONS(452), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(466), + [anon_sym_package] = ACTIONS(468), + [anon_sym_import] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_case] = ACTIONS(468), + [anon_sym_object] = ACTIONS(468), + [anon_sym_class] = ACTIONS(468), + [anon_sym_trait] = ACTIONS(468), + [anon_sym_val] = ACTIONS(468), + [anon_sym_var] = ACTIONS(468), + [anon_sym_type] = ACTIONS(468), + [anon_sym_def] = ACTIONS(468), + [anon_sym_abstract] = ACTIONS(468), + [anon_sym_final] = ACTIONS(468), + [anon_sym_sealed] = ACTIONS(468), + [anon_sym_implicit] = ACTIONS(468), + [anon_sym_lazy] = ACTIONS(468), + [anon_sym_override] = ACTIONS(468), + [anon_sym_private] = ACTIONS(468), + [anon_sym_protected] = ACTIONS(468), + [anon_sym_with] = ACTIONS(470), + [sym_identifier] = ACTIONS(472), + [sym_operator_identifier] = ACTIONS(472), + [sym_comment] = ACTIONS(464), }, [118] = { - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_COLON] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(454), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(474), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_val] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [119] = { - [aux_sym_class_parameters_repeat1] = STATE(266), - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(278), + [ts_builtin_sym_end] = ACTIONS(474), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(460), + [anon_sym_val] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [120] = { - [sym_type_arguments] = STATE(269), - [anon_sym_DOT] = ACTIONS(464), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_with] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(458), + [sym_comment] = ACTIONS(34), }, [121] = { - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_with] = ACTIONS(468), - [sym_identifier] = ACTIONS(470), - [sym_operator_identifier] = ACTIONS(470), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(480), + [sym_comment] = ACTIONS(34), }, [122] = { - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(482), + [sym_comment] = ACTIONS(34), }, [123] = { - [sym_type_arguments] = STATE(272), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(484), + [anon_sym_package] = ACTIONS(484), + [anon_sym_import] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_object] = ACTIONS(484), + [anon_sym_class] = ACTIONS(484), + [anon_sym_trait] = ACTIONS(484), + [anon_sym_val] = ACTIONS(484), + [anon_sym_var] = ACTIONS(484), + [anon_sym_type] = ACTIONS(484), + [anon_sym_def] = ACTIONS(484), + [anon_sym_abstract] = ACTIONS(484), + [anon_sym_final] = ACTIONS(484), + [anon_sym_sealed] = ACTIONS(484), + [anon_sym_implicit] = ACTIONS(484), + [anon_sym_lazy] = ACTIONS(484), + [anon_sym_override] = ACTIONS(484), + [anon_sym_private] = ACTIONS(484), + [anon_sym_protected] = ACTIONS(484), + [anon_sym_extends] = ACTIONS(484), + [sym_comment] = ACTIONS(34), }, [124] = { - [anon_sym_DOT] = ACTIONS(464), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_RPAREN] = ACTIONS(486), [sym_comment] = ACTIONS(34), }, [125] = { - [anon_sym_EQ_GT] = ACTIONS(472), + [aux_sym_class_parameters_repeat1] = STATE(285), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(494), [sym_comment] = ACTIONS(34), }, [126] = { - [ts_builtin_sym_end] = ACTIONS(474), - [anon_sym_package] = ACTIONS(474), - [anon_sym_import] = ACTIONS(474), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_case] = ACTIONS(474), - [anon_sym_object] = ACTIONS(474), - [anon_sym_class] = ACTIONS(474), - [anon_sym_trait] = ACTIONS(474), - [anon_sym_val] = ACTIONS(474), - [anon_sym_var] = ACTIONS(474), - [anon_sym_type] = ACTIONS(474), - [anon_sym_def] = ACTIONS(474), - [anon_sym_abstract] = ACTIONS(474), - [anon_sym_final] = ACTIONS(474), - [anon_sym_sealed] = ACTIONS(474), - [anon_sym_implicit] = ACTIONS(474), - [anon_sym_lazy] = ACTIONS(474), - [anon_sym_override] = ACTIONS(474), - [anon_sym_private] = ACTIONS(474), - [anon_sym_protected] = ACTIONS(474), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(288), + [anon_sym_DOT] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_with] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [127] = { - [sym_template_body] = STATE(274), - [anon_sym_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_with] = ACTIONS(500), + [sym_identifier] = ACTIONS(502), + [sym_operator_identifier] = ACTIONS(502), + [sym_comment] = ACTIONS(464), }, [128] = { - [sym_package_clause] = STATE(276), - [sym_import_declaration] = STATE(276), - [sym_object_definition] = STATE(276), - [sym_class_definition] = STATE(276), - [sym_trait_definition] = STATE(276), - [sym_val_definition] = STATE(276), - [sym_val_declaration] = STATE(276), - [sym_var_declaration] = STATE(276), - [sym_var_definition] = STATE(276), - [sym_type_definition] = STATE(276), - [sym_function_definition] = STATE(276), - [sym_function_declaration] = STATE(276), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(277), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [129] = { - [sym__string_middle] = ACTIONS(478), - [sym__string_end] = ACTIONS(478), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(291), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [130] = { - [sym_interpolation] = STATE(278), - [anon_sym_DOLLAR] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(496), [sym_comment] = ACTIONS(34), }, [131] = { - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_EQ_GT] = ACTIONS(480), - [anon_sym_COLON] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_if] = ACTIONS(480), + [anon_sym_EQ_GT] = ACTIONS(504), [sym_comment] = ACTIONS(34), }, [132] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(484), + [ts_builtin_sym_end] = ACTIONS(506), + [anon_sym_package] = ACTIONS(506), + [anon_sym_import] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_case] = ACTIONS(506), + [anon_sym_object] = ACTIONS(506), + [anon_sym_class] = ACTIONS(506), + [anon_sym_trait] = ACTIONS(506), + [anon_sym_val] = ACTIONS(506), + [anon_sym_var] = ACTIONS(506), + [anon_sym_type] = ACTIONS(506), + [anon_sym_def] = ACTIONS(506), + [anon_sym_abstract] = ACTIONS(506), + [anon_sym_final] = ACTIONS(506), + [anon_sym_sealed] = ACTIONS(506), + [anon_sym_implicit] = ACTIONS(506), + [anon_sym_lazy] = ACTIONS(506), + [anon_sym_override] = ACTIONS(506), + [anon_sym_private] = ACTIONS(506), + [anon_sym_protected] = ACTIONS(506), [sym_comment] = ACTIONS(34), }, [133] = { - [sym_package_clause] = STATE(282), - [sym_import_declaration] = STATE(282), - [sym_object_definition] = STATE(282), - [sym_class_definition] = STATE(282), - [sym_trait_definition] = STATE(282), - [sym_val_definition] = STATE(282), - [sym_val_declaration] = STATE(282), - [sym_var_declaration] = STATE(282), - [sym_var_definition] = STATE(282), - [sym_type_definition] = STATE(282), - [sym_function_definition] = STATE(282), - [sym_function_declaration] = STATE(282), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(283), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_template_body] = STATE(293), + [anon_sym_LBRACE] = ACTIONS(102), [sym_comment] = ACTIONS(34), }, [134] = { - [sym__multiline_string_middle] = ACTIONS(478), - [sym__multiline_string_end] = ACTIONS(478), + [sym_package_clause] = STATE(295), + [sym_import_declaration] = STATE(295), + [sym_object_definition] = STATE(295), + [sym_class_definition] = STATE(295), + [sym_trait_definition] = STATE(295), + [sym_val_definition] = STATE(295), + [sym_val_declaration] = STATE(295), + [sym_var_declaration] = STATE(295), + [sym_var_definition] = STATE(295), + [sym_type_definition] = STATE(295), + [sym_function_definition] = STATE(295), + [sym_function_declaration] = STATE(295), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(296), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [135] = { - [sym_interpolation] = STATE(284), - [anon_sym_DOLLAR] = ACTIONS(116), + [sym__string_middle] = ACTIONS(510), + [sym__string_end] = ACTIONS(510), [sym_comment] = ACTIONS(34), }, [136] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(484), + [sym_interpolation] = STATE(297), + [anon_sym_DOLLAR] = ACTIONS(118), [sym_comment] = ACTIONS(34), }, [137] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(287), - [sym_alternative_pattern] = STATE(287), - [sym_typed_pattern] = STATE(287), - [sym_tuple_pattern] = STATE(287), - [sym_parenthesized_pattern] = STATE(287), - [sym_wildcard] = STATE(287), - [sym_string] = STATE(287), - [sym__simple_string] = ACTIONS(50), - [sym__string_start] = ACTIONS(52), - [sym__multiline_string_start] = ACTIONS(54), - [anon_sym__] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(58), - [sym_identifier] = ACTIONS(488), - [sym_number] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_EQ_GT] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_if] = ACTIONS(512), [sym_comment] = ACTIONS(34), }, [138] = { - [sym__type] = STATE(289), - [sym_compound_type] = STATE(290), - [sym_infix_type] = STATE(290), - [sym_stable_type_identifier] = STATE(291), - [sym_stable_identifier] = STATE(292), - [sym_generic_type] = STATE(290), - [sym_function_type] = STATE(290), - [sym_parameter_types] = STATE(293), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(492), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(516), [sym_comment] = ACTIONS(34), }, [139] = { - [anon_sym_COMMA] = ACTIONS(494), - [anon_sym_EQ_GT] = ACTIONS(494), - [anon_sym_COLON] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(494), - [anon_sym_PIPE] = ACTIONS(494), - [anon_sym_if] = ACTIONS(494), + [sym_package_clause] = STATE(301), + [sym_import_declaration] = STATE(301), + [sym_object_definition] = STATE(301), + [sym_class_definition] = STATE(301), + [sym_trait_definition] = STATE(301), + [sym_val_definition] = STATE(301), + [sym_val_declaration] = STATE(301), + [sym_var_declaration] = STATE(301), + [sym_var_definition] = STATE(301), + [sym_type_definition] = STATE(301), + [sym_function_definition] = STATE(301), + [sym_function_declaration] = STATE(301), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(302), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [140] = { - [aux_sym_case_class_pattern_repeat1] = STATE(295), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_RPAREN] = ACTIONS(498), + [sym__multiline_string_middle] = ACTIONS(510), + [sym__multiline_string_end] = ACTIONS(510), [sym_comment] = ACTIONS(34), }, [141] = { - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(500), + [sym_interpolation] = STATE(303), + [anon_sym_DOLLAR] = ACTIONS(120), [sym_comment] = ACTIONS(34), }, [142] = { - [anon_sym_COMMA] = ACTIONS(502), - [anon_sym_COLON] = ACTIONS(502), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(516), [sym_comment] = ACTIONS(34), }, [143] = { - [sym_type_arguments] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(422), - [anon_sym_package] = ACTIONS(424), - [anon_sym_import] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(504), - [anon_sym_case] = ACTIONS(424), - [anon_sym_object] = ACTIONS(424), - [anon_sym_class] = ACTIONS(424), - [anon_sym_trait] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_val] = ACTIONS(424), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(424), - [anon_sym_var] = ACTIONS(424), - [anon_sym_type] = ACTIONS(424), - [anon_sym_def] = ACTIONS(424), - [anon_sym_abstract] = ACTIONS(424), - [anon_sym_final] = ACTIONS(424), - [anon_sym_sealed] = ACTIONS(424), - [anon_sym_implicit] = ACTIONS(424), - [anon_sym_lazy] = ACTIONS(424), - [anon_sym_override] = ACTIONS(424), - [anon_sym_private] = ACTIONS(424), - [anon_sym_protected] = ACTIONS(424), - [anon_sym_with] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(306), + [sym_alternative_pattern] = STATE(306), + [sym_typed_pattern] = STATE(306), + [sym_tuple_pattern] = STATE(306), + [sym_parenthesized_pattern] = STATE(306), + [sym_wildcard] = STATE(306), + [sym_string] = STATE(306), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(520), + [sym_number] = ACTIONS(522), + [sym_comment] = ACTIONS(34), }, [144] = { - [ts_builtin_sym_end] = ACTIONS(508), - [anon_sym_package] = ACTIONS(510), - [anon_sym_import] = ACTIONS(510), - [anon_sym_case] = ACTIONS(510), - [anon_sym_object] = ACTIONS(510), - [anon_sym_class] = ACTIONS(510), - [anon_sym_trait] = ACTIONS(510), - [anon_sym_val] = ACTIONS(510), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(514), - [anon_sym_var] = ACTIONS(510), - [anon_sym_type] = ACTIONS(510), - [anon_sym_def] = ACTIONS(510), - [anon_sym_abstract] = ACTIONS(510), - [anon_sym_final] = ACTIONS(510), - [anon_sym_sealed] = ACTIONS(510), - [anon_sym_implicit] = ACTIONS(510), - [anon_sym_lazy] = ACTIONS(510), - [anon_sym_override] = ACTIONS(510), - [anon_sym_private] = ACTIONS(510), - [anon_sym_protected] = ACTIONS(510), - [anon_sym_with] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(518), - [sym_operator_identifier] = ACTIONS(518), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(308), + [sym_compound_type] = STATE(309), + [sym_infix_type] = STATE(309), + [sym_stable_type_identifier] = STATE(310), + [sym_stable_identifier] = STATE(311), + [sym_generic_type] = STATE(309), + [sym_function_type] = STATE(309), + [sym_parameter_types] = STATE(312), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(524), + [sym_comment] = ACTIONS(34), }, [145] = { - [ts_builtin_sym_end] = ACTIONS(442), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_val] = ACTIONS(444), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_EQ_GT] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(528), + [anon_sym_RPAREN] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [sym_comment] = ACTIONS(34), }, [146] = { - [sym_type_arguments] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(442), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_val] = ACTIONS(444), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [aux_sym_case_class_pattern_repeat1] = STATE(314), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_RPAREN] = ACTIONS(530), + [sym_comment] = ACTIONS(34), }, [147] = { - [anon_sym_DOT] = ACTIONS(504), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(532), [sym_comment] = ACTIONS(34), }, [148] = { - [anon_sym_EQ_GT] = ACTIONS(520), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COLON] = ACTIONS(534), [sym_comment] = ACTIONS(34), }, [149] = { - [ts_builtin_sym_end] = ACTIONS(110), - [anon_sym_package] = ACTIONS(112), - [anon_sym_import] = ACTIONS(112), - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_case] = ACTIONS(112), - [anon_sym_object] = ACTIONS(112), - [anon_sym_class] = ACTIONS(112), - [anon_sym_trait] = ACTIONS(112), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_val] = ACTIONS(112), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_var] = ACTIONS(112), - [anon_sym_type] = ACTIONS(112), - [anon_sym_def] = ACTIONS(112), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_final] = ACTIONS(112), - [anon_sym_sealed] = ACTIONS(112), - [anon_sym_implicit] = ACTIONS(112), - [anon_sym_lazy] = ACTIONS(112), - [anon_sym_override] = ACTIONS(112), - [anon_sym_private] = ACTIONS(112), - [anon_sym_protected] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_match] = ACTIONS(112), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(317), + [ts_builtin_sym_end] = ACTIONS(454), + [anon_sym_package] = ACTIONS(456), + [anon_sym_import] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(536), + [anon_sym_case] = ACTIONS(456), + [anon_sym_object] = ACTIONS(456), + [anon_sym_class] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_val] = ACTIONS(456), + [anon_sym_COLON] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_var] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_def] = ACTIONS(456), + [anon_sym_abstract] = ACTIONS(456), + [anon_sym_final] = ACTIONS(456), + [anon_sym_sealed] = ACTIONS(456), + [anon_sym_implicit] = ACTIONS(456), + [anon_sym_lazy] = ACTIONS(456), + [anon_sym_override] = ACTIONS(456), + [anon_sym_private] = ACTIONS(456), + [anon_sym_protected] = ACTIONS(456), + [anon_sym_with] = ACTIONS(456), + [anon_sym_PIPE] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [150] = { - [sym_interpolation] = STATE(304), - [anon_sym_DOLLAR] = ACTIONS(114), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(540), + [anon_sym_package] = ACTIONS(542), + [anon_sym_import] = ACTIONS(542), + [anon_sym_case] = ACTIONS(542), + [anon_sym_object] = ACTIONS(542), + [anon_sym_class] = ACTIONS(542), + [anon_sym_trait] = ACTIONS(542), + [anon_sym_val] = ACTIONS(542), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_var] = ACTIONS(542), + [anon_sym_type] = ACTIONS(542), + [anon_sym_def] = ACTIONS(542), + [anon_sym_abstract] = ACTIONS(542), + [anon_sym_final] = ACTIONS(542), + [anon_sym_sealed] = ACTIONS(542), + [anon_sym_implicit] = ACTIONS(542), + [anon_sym_lazy] = ACTIONS(542), + [anon_sym_override] = ACTIONS(542), + [anon_sym_private] = ACTIONS(542), + [anon_sym_protected] = ACTIONS(542), + [anon_sym_with] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(550), + [sym_operator_identifier] = ACTIONS(550), + [sym_comment] = ACTIONS(464), }, [151] = { - [sym_interpolation] = STATE(305), - [anon_sym_DOLLAR] = ACTIONS(116), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(474), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_val] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [152] = { - [sym_package_clause] = STATE(307), - [sym_import_declaration] = STATE(307), - [sym_object_definition] = STATE(307), - [sym_class_definition] = STATE(307), - [sym_trait_definition] = STATE(307), - [sym_val_definition] = STATE(307), - [sym_val_declaration] = STATE(307), - [sym_var_declaration] = STATE(307), - [sym_var_definition] = STATE(307), - [sym_type_definition] = STATE(307), - [sym_function_definition] = STATE(307), - [sym_function_declaration] = STATE(307), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(308), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(321), + [ts_builtin_sym_end] = ACTIONS(474), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_val] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [153] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(319), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(536), [sym_comment] = ACTIONS(34), }, [154] = { - [sym_parenthesized_expression] = STATE(321), - [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_EQ_GT] = ACTIONS(552), [sym_comment] = ACTIONS(34), }, [155] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(322), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(114), + [anon_sym_package] = ACTIONS(116), + [anon_sym_import] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_case] = ACTIONS(116), + [anon_sym_object] = ACTIONS(116), + [anon_sym_class] = ACTIONS(116), + [anon_sym_trait] = ACTIONS(116), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_val] = ACTIONS(116), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_var] = ACTIONS(116), + [anon_sym_type] = ACTIONS(116), + [anon_sym_def] = ACTIONS(116), + [anon_sym_abstract] = ACTIONS(116), + [anon_sym_final] = ACTIONS(116), + [anon_sym_sealed] = ACTIONS(116), + [anon_sym_implicit] = ACTIONS(116), + [anon_sym_lazy] = ACTIONS(116), + [anon_sym_override] = ACTIONS(116), + [anon_sym_private] = ACTIONS(116), + [anon_sym_protected] = ACTIONS(116), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_match] = ACTIONS(116), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [156] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(323), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), + [sym_interpolation] = STATE(323), + [anon_sym_DOLLAR] = ACTIONS(118), [sym_comment] = ACTIONS(34), }, [157] = { - [sym_string] = STATE(324), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [ts_builtin_sym_end] = ACTIONS(548), - [anon_sym_package] = ACTIONS(550), - [anon_sym_import] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_case] = ACTIONS(550), - [anon_sym_object] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_val] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_var] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_def] = ACTIONS(550), - [anon_sym_abstract] = ACTIONS(550), - [anon_sym_final] = ACTIONS(550), - [anon_sym_sealed] = ACTIONS(550), - [anon_sym_implicit] = ACTIONS(550), - [anon_sym_lazy] = ACTIONS(550), - [anon_sym_override] = ACTIONS(550), - [anon_sym_private] = ACTIONS(550), - [anon_sym_protected] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(324), + [anon_sym_DOLLAR] = ACTIONS(120), + [sym_comment] = ACTIONS(34), }, [158] = { - [ts_builtin_sym_end] = ACTIONS(548), - [anon_sym_package] = ACTIONS(550), - [anon_sym_import] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_case] = ACTIONS(550), - [anon_sym_object] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_val] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_var] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_def] = ACTIONS(550), - [anon_sym_abstract] = ACTIONS(550), - [anon_sym_final] = ACTIONS(550), - [anon_sym_sealed] = ACTIONS(550), - [anon_sym_implicit] = ACTIONS(550), - [anon_sym_lazy] = ACTIONS(550), - [anon_sym_override] = ACTIONS(550), - [anon_sym_private] = ACTIONS(550), - [anon_sym_protected] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(327), + [sym_import_declaration] = STATE(327), + [sym_object_definition] = STATE(327), + [sym_class_definition] = STATE(327), + [sym_trait_definition] = STATE(327), + [sym_val_definition] = STATE(327), + [sym_val_declaration] = STATE(327), + [sym_var_declaration] = STATE(327), + [sym_var_definition] = STATE(327), + [sym_type_definition] = STATE(327), + [sym_function_definition] = STATE(327), + [sym_function_declaration] = STATE(327), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(328), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(330), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [159] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(554), - [anon_sym_package] = ACTIONS(556), - [anon_sym_import] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(556), - [anon_sym_object] = ACTIONS(556), - [anon_sym_class] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_def] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(556), - [anon_sym_final] = ACTIONS(556), - [anon_sym_sealed] = ACTIONS(556), - [anon_sym_implicit] = ACTIONS(556), - [anon_sym_lazy] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(341), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [160] = { - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_EQ_GT] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_RPAREN] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(570), - [anon_sym_if] = ACTIONS(570), + [sym_parenthesized_expression] = STATE(343), + [anon_sym_LPAREN] = ACTIONS(580), [sym_comment] = ACTIONS(34), }, [161] = { - [aux_sym_case_class_pattern_repeat1] = STATE(334), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_RPAREN] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(136), + [sym_block] = STATE(164), + [sym__expression] = STATE(344), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [162] = { - [aux_sym_case_class_pattern_repeat1] = STATE(334), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(262), - [anon_sym_RPAREN] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(136), + [sym_block] = STATE(164), + [sym__expression] = STATE(345), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [163] = { - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_RPAREN] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_if] = ACTIONS(576), - [sym_comment] = ACTIONS(34), + [sym_string] = STATE(346), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [ts_builtin_sym_end] = ACTIONS(582), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_case] = ACTIONS(584), + [anon_sym_object] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_val] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_var] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_def] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_implicit] = ACTIONS(584), + [anon_sym_lazy] = ACTIONS(584), + [anon_sym_override] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [164] = { - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_if] = ACTIONS(576), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(582), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_case] = ACTIONS(584), + [anon_sym_object] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_val] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_var] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_def] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_implicit] = ACTIONS(584), + [anon_sym_lazy] = ACTIONS(584), + [anon_sym_override] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [165] = { - [sym__type] = STATE(336), - [sym_compound_type] = STATE(182), - [sym_infix_type] = STATE(182), - [sym_stable_type_identifier] = STATE(183), - [sym_stable_identifier] = STATE(184), - [sym_generic_type] = STATE(182), - [sym_function_type] = STATE(182), - [sym_parameter_types] = STATE(185), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(588), + [anon_sym_package] = ACTIONS(590), + [anon_sym_import] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(590), + [anon_sym_object] = ACTIONS(590), + [anon_sym_class] = ACTIONS(590), + [anon_sym_trait] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(590), + [anon_sym_type] = ACTIONS(590), + [anon_sym_def] = ACTIONS(590), + [anon_sym_abstract] = ACTIONS(590), + [anon_sym_final] = ACTIONS(590), + [anon_sym_sealed] = ACTIONS(590), + [anon_sym_implicit] = ACTIONS(590), + [anon_sym_lazy] = ACTIONS(590), + [anon_sym_override] = ACTIONS(590), + [anon_sym_private] = ACTIONS(590), + [anon_sym_protected] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [166] = { - [aux_sym_val_declaration_repeat1] = STATE(166), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_COLON] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_EQ_GT] = ACTIONS(604), + [anon_sym_COLON] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_RPAREN] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), [sym_comment] = ACTIONS(34), }, [167] = { - [sym_type_arguments] = STATE(339), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(424), - [anon_sym_with] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [aux_sym_case_class_pattern_repeat1] = STATE(356), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [168] = { - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(514), - [anon_sym_with] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(589), - [sym_operator_identifier] = ACTIONS(589), - [sym_comment] = ACTIONS(432), + [aux_sym_case_class_pattern_repeat1] = STATE(356), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [169] = { - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_EQ_GT] = ACTIONS(610), + [anon_sym_COLON] = ACTIONS(610), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [sym_comment] = ACTIONS(34), }, [170] = { - [sym_type_arguments] = STATE(342), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_EQ_GT] = ACTIONS(610), + [anon_sym_COLON] = ACTIONS(610), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [sym_comment] = ACTIONS(34), }, [171] = { - [anon_sym_DOT] = ACTIONS(583), + [sym__type] = STATE(358), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(34), }, [172] = { - [anon_sym_EQ_GT] = ACTIONS(591), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(614), + [anon_sym_COLON] = ACTIONS(534), [sym_comment] = ACTIONS(34), }, [173] = { - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_EQ_GT] = ACTIONS(593), - [anon_sym_COLON] = ACTIONS(593), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_if] = ACTIONS(593), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(361), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_with] = ACTIONS(456), + [anon_sym_PIPE] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [174] = { - [aux_sym_case_class_pattern_repeat1] = STATE(345), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(136), - [sym_comment] = ACTIONS(34), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [175] = { - [aux_sym_case_class_pattern_repeat1] = STATE(345), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(262), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(136), - [sym_comment] = ACTIONS(34), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [176] = { - [ts_builtin_sym_end] = ACTIONS(599), - [anon_sym_package] = ACTIONS(601), - [anon_sym_import] = ACTIONS(601), - [anon_sym_case] = ACTIONS(601), - [anon_sym_object] = ACTIONS(601), - [anon_sym_class] = ACTIONS(601), - [anon_sym_trait] = ACTIONS(601), - [anon_sym_val] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_var] = ACTIONS(601), - [anon_sym_type] = ACTIONS(601), - [anon_sym_def] = ACTIONS(601), - [anon_sym_abstract] = ACTIONS(601), - [anon_sym_final] = ACTIONS(601), - [anon_sym_sealed] = ACTIONS(601), - [anon_sym_implicit] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(601), - [anon_sym_override] = ACTIONS(601), - [anon_sym_private] = ACTIONS(601), - [anon_sym_protected] = ACTIONS(601), - [anon_sym_with] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(518), - [sym_operator_identifier] = ACTIONS(518), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(364), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [177] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(605), - [anon_sym_package] = ACTIONS(607), - [anon_sym_import] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(607), - [anon_sym_object] = ACTIONS(607), - [anon_sym_class] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_def] = ACTIONS(607), - [anon_sym_abstract] = ACTIONS(607), - [anon_sym_final] = ACTIONS(607), - [anon_sym_sealed] = ACTIONS(607), - [anon_sym_implicit] = ACTIONS(607), - [anon_sym_lazy] = ACTIONS(607), - [anon_sym_override] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(617), + [sym_comment] = ACTIONS(34), }, [178] = { - [sym__type] = STATE(347), - [sym_compound_type] = STATE(182), - [sym_infix_type] = STATE(182), - [sym_stable_type_identifier] = STATE(183), - [sym_stable_identifier] = STATE(184), - [sym_generic_type] = STATE(182), - [sym_function_type] = STATE(182), - [sym_parameter_types] = STATE(185), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(314), + [anon_sym_EQ_GT] = ACTIONS(625), [sym_comment] = ACTIONS(34), }, [179] = { - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_with] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(589), - [sym_operator_identifier] = ACTIONS(589), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(627), + [anon_sym_EQ_GT] = ACTIONS(627), + [anon_sym_COLON] = ACTIONS(627), + [anon_sym_EQ] = ACTIONS(629), + [anon_sym_RPAREN] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_if] = ACTIONS(627), + [sym_comment] = ACTIONS(34), }, [180] = { - [sym_type_arguments] = STATE(350), - [ts_builtin_sym_end] = ACTIONS(422), - [anon_sym_package] = ACTIONS(424), - [anon_sym_import] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(609), - [anon_sym_case] = ACTIONS(424), - [anon_sym_object] = ACTIONS(424), - [anon_sym_class] = ACTIONS(424), - [anon_sym_trait] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_val] = ACTIONS(424), - [anon_sym_var] = ACTIONS(424), - [anon_sym_type] = ACTIONS(424), - [anon_sym_def] = ACTIONS(424), - [anon_sym_abstract] = ACTIONS(424), - [anon_sym_final] = ACTIONS(424), - [anon_sym_sealed] = ACTIONS(424), - [anon_sym_implicit] = ACTIONS(424), - [anon_sym_lazy] = ACTIONS(424), - [anon_sym_override] = ACTIONS(424), - [anon_sym_private] = ACTIONS(424), - [anon_sym_protected] = ACTIONS(424), - [anon_sym_with] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(424), - [sym_comment] = ACTIONS(432), + [aux_sym_case_class_pattern_repeat1] = STATE(367), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [181] = { - [ts_builtin_sym_end] = ACTIONS(613), - [anon_sym_package] = ACTIONS(615), - [anon_sym_import] = ACTIONS(615), - [anon_sym_case] = ACTIONS(615), - [anon_sym_object] = ACTIONS(615), - [anon_sym_class] = ACTIONS(615), - [anon_sym_trait] = ACTIONS(615), - [anon_sym_val] = ACTIONS(615), - [anon_sym_var] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_def] = ACTIONS(615), - [anon_sym_abstract] = ACTIONS(615), - [anon_sym_final] = ACTIONS(615), - [anon_sym_sealed] = ACTIONS(615), - [anon_sym_implicit] = ACTIONS(615), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_override] = ACTIONS(615), - [anon_sym_private] = ACTIONS(615), - [anon_sym_protected] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [sym_identifier] = ACTIONS(619), - [sym_operator_identifier] = ACTIONS(621), - [sym_comment] = ACTIONS(432), + [aux_sym_case_class_pattern_repeat1] = STATE(367), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [182] = { - [ts_builtin_sym_end] = ACTIONS(442), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_val] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(444), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(633), + [anon_sym_package] = ACTIONS(635), + [anon_sym_import] = ACTIONS(635), + [anon_sym_case] = ACTIONS(635), + [anon_sym_object] = ACTIONS(635), + [anon_sym_class] = ACTIONS(635), + [anon_sym_trait] = ACTIONS(635), + [anon_sym_val] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_var] = ACTIONS(635), + [anon_sym_type] = ACTIONS(635), + [anon_sym_def] = ACTIONS(635), + [anon_sym_abstract] = ACTIONS(635), + [anon_sym_final] = ACTIONS(635), + [anon_sym_sealed] = ACTIONS(635), + [anon_sym_implicit] = ACTIONS(635), + [anon_sym_lazy] = ACTIONS(635), + [anon_sym_override] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_with] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(550), + [sym_operator_identifier] = ACTIONS(550), + [sym_comment] = ACTIONS(464), }, [183] = { [sym_type_arguments] = STATE(353), - [ts_builtin_sym_end] = ACTIONS(442), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_val] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(444), - [sym_comment] = ACTIONS(432), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(639), + [anon_sym_package] = ACTIONS(641), + [anon_sym_import] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(641), + [anon_sym_object] = ACTIONS(641), + [anon_sym_class] = ACTIONS(641), + [anon_sym_trait] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(641), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(641), + [anon_sym_type] = ACTIONS(641), + [anon_sym_def] = ACTIONS(641), + [anon_sym_abstract] = ACTIONS(641), + [anon_sym_final] = ACTIONS(641), + [anon_sym_sealed] = ACTIONS(641), + [anon_sym_implicit] = ACTIONS(641), + [anon_sym_lazy] = ACTIONS(641), + [anon_sym_override] = ACTIONS(641), + [anon_sym_private] = ACTIONS(641), + [anon_sym_protected] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [184] = { - [anon_sym_DOT] = ACTIONS(609), + [sym__type] = STATE(369), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(34), }, [185] = { - [anon_sym_EQ_GT] = ACTIONS(623), - [sym_comment] = ACTIONS(34), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [186] = { - [sym__type] = STATE(355), - [sym_compound_type] = STATE(182), - [sym_infix_type] = STATE(182), - [sym_stable_type_identifier] = STATE(183), - [sym_stable_identifier] = STATE(184), - [sym_generic_type] = STATE(182), - [sym_function_type] = STATE(182), - [sym_parameter_types] = STATE(185), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(372), + [ts_builtin_sym_end] = ACTIONS(454), + [anon_sym_package] = ACTIONS(456), + [anon_sym_import] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(643), + [anon_sym_case] = ACTIONS(456), + [anon_sym_object] = ACTIONS(456), + [anon_sym_class] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_val] = ACTIONS(456), + [anon_sym_var] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_def] = ACTIONS(456), + [anon_sym_abstract] = ACTIONS(456), + [anon_sym_final] = ACTIONS(456), + [anon_sym_sealed] = ACTIONS(456), + [anon_sym_implicit] = ACTIONS(456), + [anon_sym_lazy] = ACTIONS(456), + [anon_sym_override] = ACTIONS(456), + [anon_sym_private] = ACTIONS(456), + [anon_sym_protected] = ACTIONS(456), + [anon_sym_with] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(456), + [sym_comment] = ACTIONS(464), }, [187] = { - [anon_sym_DOT] = ACTIONS(522), - [anon_sym_RBRACE] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_match] = ACTIONS(522), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [anon_sym_SEMI] = ACTIONS(522), - [anon_sym_LF] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(647), + [anon_sym_package] = ACTIONS(649), + [anon_sym_import] = ACTIONS(649), + [anon_sym_case] = ACTIONS(649), + [anon_sym_object] = ACTIONS(649), + [anon_sym_class] = ACTIONS(649), + [anon_sym_trait] = ACTIONS(649), + [anon_sym_val] = ACTIONS(649), + [anon_sym_var] = ACTIONS(649), + [anon_sym_type] = ACTIONS(649), + [anon_sym_def] = ACTIONS(649), + [anon_sym_abstract] = ACTIONS(649), + [anon_sym_final] = ACTIONS(649), + [anon_sym_sealed] = ACTIONS(649), + [anon_sym_implicit] = ACTIONS(649), + [anon_sym_lazy] = ACTIONS(649), + [anon_sym_override] = ACTIONS(649), + [anon_sym_private] = ACTIONS(649), + [anon_sym_protected] = ACTIONS(649), + [anon_sym_with] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [sym_operator_identifier] = ACTIONS(655), + [sym_comment] = ACTIONS(464), }, [188] = { - [sym_interpolation] = STATE(356), - [anon_sym_DOLLAR] = ACTIONS(114), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(474), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_val] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(476), + [sym_comment] = ACTIONS(464), }, [189] = { - [sym_interpolation] = STATE(357), - [anon_sym_DOLLAR] = ACTIONS(116), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(375), + [ts_builtin_sym_end] = ACTIONS(474), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_val] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(476), + [sym_comment] = ACTIONS(464), }, [190] = { - [sym_identifier] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(643), [sym_comment] = ACTIONS(34), }, [191] = { - [sym_stable_identifier] = STATE(360), - [sym_identifier] = ACTIONS(627), + [anon_sym_EQ_GT] = ACTIONS(657), [sym_comment] = ACTIONS(34), }, [192] = { - [sym_package_clause] = STATE(362), - [sym_import_declaration] = STATE(362), - [sym_object_definition] = STATE(362), - [sym_class_definition] = STATE(362), - [sym_trait_definition] = STATE(362), - [sym_val_definition] = STATE(362), - [sym_val_declaration] = STATE(362), - [sym_var_declaration] = STATE(362), - [sym_var_definition] = STATE(362), - [sym_type_definition] = STATE(362), - [sym_function_definition] = STATE(362), - [sym_function_declaration] = STATE(362), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(363), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym__type] = STATE(377), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(34), }, [193] = { - [ts_builtin_sym_end] = ACTIONS(631), - [anon_sym_package] = ACTIONS(631), - [anon_sym_import] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_case] = ACTIONS(631), - [anon_sym_object] = ACTIONS(631), - [anon_sym_class] = ACTIONS(631), - [anon_sym_trait] = ACTIONS(631), - [anon_sym_val] = ACTIONS(631), - [anon_sym_var] = ACTIONS(631), - [anon_sym_type] = ACTIONS(631), - [anon_sym_def] = ACTIONS(631), - [anon_sym_abstract] = ACTIONS(631), - [anon_sym_final] = ACTIONS(631), - [anon_sym_sealed] = ACTIONS(631), - [anon_sym_implicit] = ACTIONS(631), - [anon_sym_lazy] = ACTIONS(631), - [anon_sym_override] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_match] = ACTIONS(554), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LF] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [194] = { - [anon_sym_object] = ACTIONS(633), - [anon_sym_class] = ACTIONS(635), + [sym_interpolation] = STATE(378), + [anon_sym_DOLLAR] = ACTIONS(118), [sym_comment] = ACTIONS(34), }, [195] = { - [sym_identifier] = ACTIONS(637), + [sym_interpolation] = STATE(379), + [anon_sym_DOLLAR] = ACTIONS(120), [sym_comment] = ACTIONS(34), }, [196] = { - [sym_identifier] = ACTIONS(639), + [sym_identifier] = ACTIONS(659), [sym_comment] = ACTIONS(34), }, [197] = { - [sym_identifier] = ACTIONS(641), + [sym_stable_identifier] = STATE(381), + [sym_identifier] = ACTIONS(661), [sym_comment] = ACTIONS(34), }, [198] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(370), - [sym_alternative_pattern] = STATE(370), - [sym_typed_pattern] = STATE(370), - [sym_tuple_pattern] = STATE(370), - [sym_parenthesized_pattern] = STATE(370), - [sym_wildcard] = STATE(370), - [sym_string] = STATE(370), - [sym__simple_string] = ACTIONS(50), - [sym__string_start] = ACTIONS(52), - [sym__multiline_string_start] = ACTIONS(54), - [anon_sym__] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(58), - [sym_identifier] = ACTIONS(643), - [sym_number] = ACTIONS(645), + [sym_package_clause] = STATE(383), + [sym_import_declaration] = STATE(383), + [sym_object_definition] = STATE(383), + [sym_class_definition] = STATE(383), + [sym_trait_definition] = STATE(383), + [sym_val_definition] = STATE(383), + [sym_val_declaration] = STATE(383), + [sym_var_declaration] = STATE(383), + [sym_var_definition] = STATE(383), + [sym_type_definition] = STATE(383), + [sym_function_definition] = STATE(383), + [sym_function_declaration] = STATE(383), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(384), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(385), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [199] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(372), - [sym_alternative_pattern] = STATE(372), - [sym_typed_pattern] = STATE(372), - [sym_tuple_pattern] = STATE(372), - [sym_parenthesized_pattern] = STATE(372), - [sym_wildcard] = STATE(372), - [sym_string] = STATE(372), - [sym__simple_string] = ACTIONS(50), - [sym__string_start] = ACTIONS(52), - [sym__multiline_string_start] = ACTIONS(54), - [anon_sym__] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(58), - [sym_identifier] = ACTIONS(647), - [sym_number] = ACTIONS(649), + [ts_builtin_sym_end] = ACTIONS(665), + [anon_sym_package] = ACTIONS(665), + [anon_sym_import] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(665), + [anon_sym_case] = ACTIONS(665), + [anon_sym_object] = ACTIONS(665), + [anon_sym_class] = ACTIONS(665), + [anon_sym_trait] = ACTIONS(665), + [anon_sym_val] = ACTIONS(665), + [anon_sym_var] = ACTIONS(665), + [anon_sym_type] = ACTIONS(665), + [anon_sym_def] = ACTIONS(665), + [anon_sym_abstract] = ACTIONS(665), + [anon_sym_final] = ACTIONS(665), + [anon_sym_sealed] = ACTIONS(665), + [anon_sym_implicit] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(665), + [anon_sym_override] = ACTIONS(665), + [anon_sym_private] = ACTIONS(665), + [anon_sym_protected] = ACTIONS(665), [sym_comment] = ACTIONS(34), }, [200] = { - [sym_identifier] = ACTIONS(651), + [anon_sym_object] = ACTIONS(667), + [anon_sym_class] = ACTIONS(669), [sym_comment] = ACTIONS(34), }, [201] = { - [sym_identifier] = ACTIONS(653), + [sym_identifier] = ACTIONS(671), [sym_comment] = ACTIONS(34), }, [202] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(375), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym_identifier] = ACTIONS(673), [sym_comment] = ACTIONS(34), }, [203] = { - [sym_parenthesized_expression] = STATE(376), - [anon_sym_LPAREN] = ACTIONS(546), + [sym_identifier] = ACTIONS(675), [sym_comment] = ACTIONS(34), }, [204] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(377), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(392), + [sym_alternative_pattern] = STATE(392), + [sym_typed_pattern] = STATE(392), + [sym_tuple_pattern] = STATE(392), + [sym_parenthesized_pattern] = STATE(392), + [sym_wildcard] = STATE(392), + [sym_string] = STATE(392), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(677), + [sym_number] = ACTIONS(679), [sym_comment] = ACTIONS(34), }, [205] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(378), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(394), + [sym_alternative_pattern] = STATE(394), + [sym_typed_pattern] = STATE(394), + [sym_tuple_pattern] = STATE(394), + [sym_parenthesized_pattern] = STATE(394), + [sym_wildcard] = STATE(394), + [sym_string] = STATE(394), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(681), + [sym_number] = ACTIONS(683), [sym_comment] = ACTIONS(34), }, [206] = { - [sym_string] = STATE(379), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_DOT] = ACTIONS(552), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_LF] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(685), + [sym_comment] = ACTIONS(34), }, [207] = { - [anon_sym_DOT] = ACTIONS(552), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_LF] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(687), + [sym_comment] = ACTIONS(34), }, [208] = { - [aux_sym_block_repeat1] = STATE(382), - [anon_sym_RBRACE] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_LF] = ACTIONS(657), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(397), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [209] = { - [anon_sym_case] = ACTIONS(659), - [anon_sym_class] = ACTIONS(635), - [anon_sym_def] = ACTIONS(661), + [sym_parenthesized_expression] = STATE(398), + [anon_sym_LPAREN] = ACTIONS(580), [sym_comment] = ACTIONS(34), }, [210] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(382), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_LF] = ACTIONS(657), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(213), + [sym__expression] = STATE(399), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [211] = { - [sym_type_arguments] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(422), - [anon_sym_package] = ACTIONS(424), - [anon_sym_import] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(424), - [anon_sym_object] = ACTIONS(424), - [anon_sym_class] = ACTIONS(424), - [anon_sym_trait] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_val] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(424), - [anon_sym_var] = ACTIONS(424), - [anon_sym_type] = ACTIONS(424), - [anon_sym_def] = ACTIONS(424), - [anon_sym_abstract] = ACTIONS(424), - [anon_sym_final] = ACTIONS(424), - [anon_sym_sealed] = ACTIONS(424), - [anon_sym_implicit] = ACTIONS(424), - [anon_sym_lazy] = ACTIONS(424), - [anon_sym_override] = ACTIONS(424), - [anon_sym_private] = ACTIONS(424), - [anon_sym_protected] = ACTIONS(424), - [anon_sym_with] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(213), + [sym__expression] = STATE(400), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [212] = { - [sym_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(679), - [anon_sym_package] = ACTIONS(681), - [anon_sym_import] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_case] = ACTIONS(681), - [anon_sym_object] = ACTIONS(681), - [anon_sym_class] = ACTIONS(681), - [anon_sym_trait] = ACTIONS(681), - [anon_sym_val] = ACTIONS(681), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_var] = ACTIONS(681), - [anon_sym_type] = ACTIONS(681), - [anon_sym_def] = ACTIONS(681), - [anon_sym_abstract] = ACTIONS(681), - [anon_sym_final] = ACTIONS(681), - [anon_sym_sealed] = ACTIONS(681), - [anon_sym_implicit] = ACTIONS(681), - [anon_sym_lazy] = ACTIONS(681), - [anon_sym_override] = ACTIONS(681), - [anon_sym_private] = ACTIONS(681), - [anon_sym_protected] = ACTIONS(681), - [anon_sym_with] = ACTIONS(687), - [sym_identifier] = ACTIONS(689), - [sym_operator_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(432), + [sym_string] = STATE(401), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_match] = ACTIONS(586), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LF] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [213] = { - [ts_builtin_sym_end] = ACTIONS(442), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_val] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_match] = ACTIONS(586), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LF] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [214] = { - [sym_type_arguments] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(442), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_val] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(404), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(691), + [sym_comment] = ACTIONS(464), }, [215] = { - [anon_sym_DOT] = ACTIONS(675), + [anon_sym_case] = ACTIONS(693), + [anon_sym_class] = ACTIONS(669), + [anon_sym_val] = ACTIONS(695), + [anon_sym_var] = ACTIONS(697), + [anon_sym_type] = ACTIONS(699), + [anon_sym_def] = ACTIONS(701), [sym_comment] = ACTIONS(34), }, [216] = { - [anon_sym_EQ_GT] = ACTIONS(691), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(404), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_LF] = ACTIONS(691), + [sym_comment] = ACTIONS(464), }, [217] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(693), - [anon_sym_package] = ACTIONS(695), - [anon_sym_import] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(695), - [anon_sym_object] = ACTIONS(695), - [anon_sym_class] = ACTIONS(695), - [anon_sym_trait] = ACTIONS(695), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(695), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(695), - [anon_sym_type] = ACTIONS(695), - [anon_sym_def] = ACTIONS(695), - [anon_sym_abstract] = ACTIONS(695), - [anon_sym_final] = ACTIONS(695), - [anon_sym_sealed] = ACTIONS(695), - [anon_sym_implicit] = ACTIONS(695), - [anon_sym_lazy] = ACTIONS(695), - [anon_sym_override] = ACTIONS(695), - [anon_sym_private] = ACTIONS(695), - [anon_sym_protected] = ACTIONS(695), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(454), + [anon_sym_package] = ACTIONS(456), + [anon_sym_import] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(456), + [anon_sym_case] = ACTIONS(456), + [anon_sym_object] = ACTIONS(456), + [anon_sym_class] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_val] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_var] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_def] = ACTIONS(456), + [anon_sym_abstract] = ACTIONS(456), + [anon_sym_final] = ACTIONS(456), + [anon_sym_sealed] = ACTIONS(456), + [anon_sym_implicit] = ACTIONS(456), + [anon_sym_lazy] = ACTIONS(456), + [anon_sym_override] = ACTIONS(456), + [anon_sym_private] = ACTIONS(456), + [anon_sym_protected] = ACTIONS(456), + [anon_sym_with] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [218] = { - [ts_builtin_sym_end] = ACTIONS(697), - [anon_sym_package] = ACTIONS(697), - [anon_sym_import] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_case] = ACTIONS(697), - [anon_sym_object] = ACTIONS(697), - [anon_sym_class] = ACTIONS(697), - [anon_sym_trait] = ACTIONS(697), - [anon_sym_val] = ACTIONS(697), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_var] = ACTIONS(697), - [anon_sym_type] = ACTIONS(697), - [anon_sym_def] = ACTIONS(697), - [anon_sym_abstract] = ACTIONS(697), - [anon_sym_final] = ACTIONS(697), - [anon_sym_sealed] = ACTIONS(697), - [anon_sym_implicit] = ACTIONS(697), - [anon_sym_lazy] = ACTIONS(697), - [anon_sym_override] = ACTIONS(697), - [anon_sym_private] = ACTIONS(697), - [anon_sym_protected] = ACTIONS(697), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(719), + [anon_sym_package] = ACTIONS(721), + [anon_sym_import] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_case] = ACTIONS(721), + [anon_sym_object] = ACTIONS(721), + [anon_sym_class] = ACTIONS(721), + [anon_sym_trait] = ACTIONS(721), + [anon_sym_val] = ACTIONS(721), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_var] = ACTIONS(721), + [anon_sym_type] = ACTIONS(721), + [anon_sym_def] = ACTIONS(721), + [anon_sym_abstract] = ACTIONS(721), + [anon_sym_final] = ACTIONS(721), + [anon_sym_sealed] = ACTIONS(721), + [anon_sym_implicit] = ACTIONS(721), + [anon_sym_lazy] = ACTIONS(721), + [anon_sym_override] = ACTIONS(721), + [anon_sym_private] = ACTIONS(721), + [anon_sym_protected] = ACTIONS(721), + [anon_sym_with] = ACTIONS(727), + [sym_identifier] = ACTIONS(729), + [sym_operator_identifier] = ACTIONS(729), + [sym_comment] = ACTIONS(464), }, [219] = { - [anon_sym_COMMA] = ACTIONS(699), - [anon_sym_COLON] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(699), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(474), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_val] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [220] = { - [aux_sym_parameters_repeat1] = STATE(406), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(707), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(474), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_val] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [221] = { - [sym__type] = STATE(407), - [sym_compound_type] = STATE(213), - [sym_infix_type] = STATE(213), - [sym_stable_type_identifier] = STATE(214), - [sym_stable_identifier] = STATE(215), - [sym_generic_type] = STATE(213), - [sym_function_type] = STATE(213), - [sym_parameter_types] = STATE(216), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(362), + [anon_sym_DOT] = ACTIONS(715), [sym_comment] = ACTIONS(34), }, [222] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(408), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), + [anon_sym_EQ_GT] = ACTIONS(731), [sym_comment] = ACTIONS(34), }, [223] = { - [sym_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(679), - [anon_sym_package] = ACTIONS(679), - [anon_sym_import] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_case] = ACTIONS(679), - [anon_sym_object] = ACTIONS(679), - [anon_sym_class] = ACTIONS(679), - [anon_sym_trait] = ACTIONS(679), - [anon_sym_val] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_EQ] = ACTIONS(711), - [anon_sym_var] = ACTIONS(679), - [anon_sym_type] = ACTIONS(679), - [anon_sym_def] = ACTIONS(679), - [anon_sym_abstract] = ACTIONS(679), - [anon_sym_final] = ACTIONS(679), - [anon_sym_sealed] = ACTIONS(679), - [anon_sym_implicit] = ACTIONS(679), - [anon_sym_lazy] = ACTIONS(679), - [anon_sym_override] = ACTIONS(679), - [anon_sym_private] = ACTIONS(679), - [anon_sym_protected] = ACTIONS(679), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(733), + [anon_sym_package] = ACTIONS(735), + [anon_sym_import] = ACTIONS(735), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(735), + [anon_sym_object] = ACTIONS(735), + [anon_sym_class] = ACTIONS(735), + [anon_sym_trait] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_def] = ACTIONS(735), + [anon_sym_abstract] = ACTIONS(735), + [anon_sym_final] = ACTIONS(735), + [anon_sym_sealed] = ACTIONS(735), + [anon_sym_implicit] = ACTIONS(735), + [anon_sym_lazy] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(693), - [anon_sym_package] = ACTIONS(693), - [anon_sym_import] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(693), - [anon_sym_case] = ACTIONS(693), - [anon_sym_object] = ACTIONS(693), - [anon_sym_class] = ACTIONS(693), - [anon_sym_trait] = ACTIONS(693), - [anon_sym_val] = ACTIONS(693), - [anon_sym_var] = ACTIONS(693), - [anon_sym_type] = ACTIONS(693), - [anon_sym_def] = ACTIONS(693), - [anon_sym_abstract] = ACTIONS(693), - [anon_sym_final] = ACTIONS(693), - [anon_sym_sealed] = ACTIONS(693), - [anon_sym_implicit] = ACTIONS(693), - [anon_sym_lazy] = ACTIONS(693), - [anon_sym_override] = ACTIONS(693), - [anon_sym_private] = ACTIONS(693), - [anon_sym_protected] = ACTIONS(693), - [sym_comment] = ACTIONS(34), - }, - [225] = { - [sym_type_parameters] = STATE(410), - [sym_template_body] = STATE(229), - [sym_extends_clause] = STATE(230), - [sym_class_parameters] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(386), - [anon_sym_package] = ACTIONS(386), - [anon_sym_import] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_case] = ACTIONS(386), - [anon_sym_object] = ACTIONS(386), - [anon_sym_class] = ACTIONS(386), - [anon_sym_trait] = ACTIONS(386), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_val] = ACTIONS(386), - [anon_sym_var] = ACTIONS(386), - [anon_sym_type] = ACTIONS(386), - [anon_sym_def] = ACTIONS(386), - [anon_sym_abstract] = ACTIONS(386), - [anon_sym_final] = ACTIONS(386), - [anon_sym_sealed] = ACTIONS(386), - [anon_sym_implicit] = ACTIONS(386), - [anon_sym_lazy] = ACTIONS(386), - [anon_sym_override] = ACTIONS(386), - [anon_sym_private] = ACTIONS(386), - [anon_sym_protected] = ACTIONS(386), - [anon_sym_extends] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(106), - [sym_comment] = ACTIONS(34), - }, - [226] = { - [sym_parameters] = STATE(411), - [sym_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(679), - [anon_sym_package] = ACTIONS(679), - [anon_sym_import] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_case] = ACTIONS(679), - [anon_sym_object] = ACTIONS(679), - [anon_sym_class] = ACTIONS(679), - [anon_sym_trait] = ACTIONS(679), - [anon_sym_val] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_EQ] = ACTIONS(711), - [anon_sym_var] = ACTIONS(679), - [anon_sym_type] = ACTIONS(679), - [anon_sym_def] = ACTIONS(679), - [anon_sym_abstract] = ACTIONS(679), - [anon_sym_final] = ACTIONS(679), - [anon_sym_sealed] = ACTIONS(679), - [anon_sym_implicit] = ACTIONS(679), - [anon_sym_lazy] = ACTIONS(679), - [anon_sym_override] = ACTIONS(679), - [anon_sym_private] = ACTIONS(679), - [anon_sym_protected] = ACTIONS(679), - [anon_sym_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(34), - }, - [227] = { - [aux_sym_import_selectors_repeat1] = STATE(415), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [sym_comment] = ACTIONS(34), - }, - [228] = { - [aux_sym_import_selectors_repeat1] = STATE(415), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(715), - [sym_comment] = ACTIONS(34), - }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(719), - [anon_sym_package] = ACTIONS(719), - [anon_sym_import] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(719), - [anon_sym_case] = ACTIONS(719), - [anon_sym_object] = ACTIONS(719), - [anon_sym_class] = ACTIONS(719), - [anon_sym_trait] = ACTIONS(719), - [anon_sym_val] = ACTIONS(719), - [anon_sym_var] = ACTIONS(719), - [anon_sym_type] = ACTIONS(719), - [anon_sym_def] = ACTIONS(719), - [anon_sym_abstract] = ACTIONS(719), - [anon_sym_final] = ACTIONS(719), - [anon_sym_sealed] = ACTIONS(719), - [anon_sym_implicit] = ACTIONS(719), - [anon_sym_lazy] = ACTIONS(719), - [anon_sym_override] = ACTIONS(719), - [anon_sym_private] = ACTIONS(719), - [anon_sym_protected] = ACTIONS(719), + [ts_builtin_sym_end] = ACTIONS(737), + [anon_sym_package] = ACTIONS(737), + [anon_sym_import] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_case] = ACTIONS(737), + [anon_sym_object] = ACTIONS(737), + [anon_sym_class] = ACTIONS(737), + [anon_sym_trait] = ACTIONS(737), + [anon_sym_val] = ACTIONS(737), + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_var] = ACTIONS(737), + [anon_sym_type] = ACTIONS(737), + [anon_sym_def] = ACTIONS(737), + [anon_sym_abstract] = ACTIONS(737), + [anon_sym_final] = ACTIONS(737), + [anon_sym_sealed] = ACTIONS(737), + [anon_sym_implicit] = ACTIONS(737), + [anon_sym_lazy] = ACTIONS(737), + [anon_sym_override] = ACTIONS(737), + [anon_sym_private] = ACTIONS(737), + [anon_sym_protected] = ACTIONS(737), [sym_comment] = ACTIONS(34), - }, - [230] = { - [sym_template_body] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(719), - [anon_sym_package] = ACTIONS(719), - [anon_sym_import] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(719), - [anon_sym_case] = ACTIONS(719), - [anon_sym_object] = ACTIONS(719), - [anon_sym_class] = ACTIONS(719), - [anon_sym_trait] = ACTIONS(719), - [anon_sym_val] = ACTIONS(719), - [anon_sym_var] = ACTIONS(719), - [anon_sym_type] = ACTIONS(719), - [anon_sym_def] = ACTIONS(719), - [anon_sym_abstract] = ACTIONS(719), - [anon_sym_final] = ACTIONS(719), - [anon_sym_sealed] = ACTIONS(719), - [anon_sym_implicit] = ACTIONS(719), - [anon_sym_lazy] = ACTIONS(719), - [anon_sym_override] = ACTIONS(719), - [anon_sym_private] = ACTIONS(719), - [anon_sym_protected] = ACTIONS(719), + }, + [225] = { + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(739), [sym_comment] = ACTIONS(34), }, - [231] = { - [sym_template_body] = STATE(416), - [sym_extends_clause] = STATE(417), + [226] = { + [aux_sym_parameters_repeat1] = STATE(431), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(747), + [sym_comment] = ACTIONS(34), + }, + [227] = { + [sym__type] = STATE(432), + [sym_compound_type] = STATE(219), + [sym_infix_type] = STATE(219), + [sym_stable_type_identifier] = STATE(220), + [sym_stable_identifier] = STATE(221), + [sym_generic_type] = STATE(219), + [sym_function_type] = STATE(219), + [sym_parameter_types] = STATE(222), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(374), + [sym_comment] = ACTIONS(34), + }, + [228] = { + [sym_block] = STATE(164), + [sym__expression] = STATE(433), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), + [sym_comment] = ACTIONS(34), + }, + [229] = { + [sym_block] = STATE(424), [ts_builtin_sym_end] = ACTIONS(719), [anon_sym_package] = ACTIONS(719), [anon_sym_import] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(98), + [anon_sym_LBRACE] = ACTIONS(156), [anon_sym_case] = ACTIONS(719), [anon_sym_object] = ACTIONS(719), [anon_sym_class] = ACTIONS(719), [anon_sym_trait] = ACTIONS(719), [anon_sym_val] = ACTIONS(719), + [anon_sym_COLON] = ACTIONS(749), + [anon_sym_EQ] = ACTIONS(751), [anon_sym_var] = ACTIONS(719), [anon_sym_type] = ACTIONS(719), [anon_sym_def] = ACTIONS(719), @@ -9749,11877 +10383,11750 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(719), [anon_sym_private] = ACTIONS(719), [anon_sym_protected] = ACTIONS(719), - [anon_sym_extends] = ACTIONS(104), + [sym_comment] = ACTIONS(34), + }, + [230] = { + [ts_builtin_sym_end] = ACTIONS(733), + [anon_sym_package] = ACTIONS(733), + [anon_sym_import] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_case] = ACTIONS(733), + [anon_sym_object] = ACTIONS(733), + [anon_sym_class] = ACTIONS(733), + [anon_sym_trait] = ACTIONS(733), + [anon_sym_val] = ACTIONS(733), + [anon_sym_var] = ACTIONS(733), + [anon_sym_type] = ACTIONS(733), + [anon_sym_def] = ACTIONS(733), + [anon_sym_abstract] = ACTIONS(733), + [anon_sym_final] = ACTIONS(733), + [anon_sym_sealed] = ACTIONS(733), + [anon_sym_implicit] = ACTIONS(733), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_override] = ACTIONS(733), + [anon_sym_private] = ACTIONS(733), + [anon_sym_protected] = ACTIONS(733), + [sym_comment] = ACTIONS(34), + }, + [231] = { + [sym_type_parameters] = STATE(435), + [sym_template_body] = STATE(245), + [sym_extends_clause] = STATE(246), + [sym_class_parameters] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(412), + [anon_sym_package] = ACTIONS(412), + [anon_sym_import] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_case] = ACTIONS(412), + [anon_sym_object] = ACTIONS(412), + [anon_sym_class] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_val] = ACTIONS(412), + [anon_sym_var] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_def] = ACTIONS(412), + [anon_sym_abstract] = ACTIONS(412), + [anon_sym_final] = ACTIONS(412), + [anon_sym_sealed] = ACTIONS(412), + [anon_sym_implicit] = ACTIONS(412), + [anon_sym_lazy] = ACTIONS(412), + [anon_sym_override] = ACTIONS(412), + [anon_sym_private] = ACTIONS(412), + [anon_sym_protected] = ACTIONS(412), + [anon_sym_extends] = ACTIONS(108), + [anon_sym_LPAREN] = ACTIONS(110), [sym_comment] = ACTIONS(34), }, [232] = { - [sym_identifier] = ACTIONS(721), + [sym__type] = STATE(436), + [sym_compound_type] = STATE(151), + [sym_infix_type] = STATE(151), + [sym_stable_type_identifier] = STATE(152), + [sym_stable_identifier] = STATE(153), + [sym_generic_type] = STATE(151), + [sym_function_type] = STATE(151), + [sym_parameter_types] = STATE(154), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(282), [sym_comment] = ACTIONS(34), }, [233] = { - [sym_type_parameters] = STATE(420), - [sym_template_body] = STATE(53), - [sym_extends_clause] = STATE(54), - [sym_class_parameters] = STATE(421), - [anon_sym_package] = ACTIONS(100), - [anon_sym_import] = ACTIONS(100), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(100), - [anon_sym_case] = ACTIONS(100), - [anon_sym_object] = ACTIONS(100), - [anon_sym_class] = ACTIONS(100), - [anon_sym_trait] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_val] = ACTIONS(100), - [anon_sym_var] = ACTIONS(100), - [anon_sym_type] = ACTIONS(100), - [anon_sym_def] = ACTIONS(100), - [anon_sym_abstract] = ACTIONS(100), - [anon_sym_final] = ACTIONS(100), - [anon_sym_sealed] = ACTIONS(100), - [anon_sym_implicit] = ACTIONS(100), - [anon_sym_lazy] = ACTIONS(100), - [anon_sym_override] = ACTIONS(100), - [anon_sym_private] = ACTIONS(100), - [anon_sym_protected] = ACTIONS(100), - [anon_sym_extends] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(106), + [sym_block] = STATE(164), + [sym__expression] = STATE(437), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [234] = { - [aux_sym_val_declaration_repeat1] = STATE(424), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(725), - [anon_sym_EQ] = ACTIONS(727), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(753), [sym_comment] = ACTIONS(34), }, [235] = { - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_EQ] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(136), + [sym__type] = STATE(439), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), [sym_comment] = ACTIONS(34), }, [236] = { - [aux_sym_val_declaration_repeat1] = STATE(428), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), + [sym__type] = STATE(440), + [sym_compound_type] = STATE(151), + [sym_infix_type] = STATE(151), + [sym_stable_type_identifier] = STATE(152), + [sym_stable_identifier] = STATE(153), + [sym_generic_type] = STATE(151), + [sym_function_type] = STATE(151), + [sym_parameter_types] = STATE(154), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(282), [sym_comment] = ACTIONS(34), }, [237] = { - [anon_sym_COLON] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(136), + [sym_block] = STATE(164), + [sym__expression] = STATE(441), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [238] = { - [sym_type_parameters] = STATE(431), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_EQ] = ACTIONS(737), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(755), [sym_comment] = ACTIONS(34), }, [239] = { - [sym_type_parameters] = STATE(434), - [sym_parameters] = STATE(435), - [sym_block] = STATE(87), - [anon_sym_package] = ACTIONS(150), - [anon_sym_import] = ACTIONS(150), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(150), - [anon_sym_case] = ACTIONS(150), - [anon_sym_object] = ACTIONS(150), - [anon_sym_class] = ACTIONS(150), - [anon_sym_trait] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_val] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(741), - [anon_sym_var] = ACTIONS(150), - [anon_sym_type] = ACTIONS(150), - [anon_sym_def] = ACTIONS(150), - [anon_sym_abstract] = ACTIONS(150), - [anon_sym_final] = ACTIONS(150), - [anon_sym_sealed] = ACTIONS(150), - [anon_sym_implicit] = ACTIONS(150), - [anon_sym_lazy] = ACTIONS(150), - [anon_sym_override] = ACTIONS(150), - [anon_sym_private] = ACTIONS(150), - [anon_sym_protected] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(158), + [sym__type] = STATE(443), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), [sym_comment] = ACTIONS(34), }, [240] = { - [anon_sym_class] = ACTIONS(743), + [sym__type] = STATE(444), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(34), }, [241] = { - [sym_identifier] = ACTIONS(745), + [anon_sym_EQ] = ACTIONS(757), [sym_comment] = ACTIONS(34), }, [242] = { - [ts_builtin_sym_end] = ACTIONS(747), - [anon_sym_package] = ACTIONS(747), - [anon_sym_import] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_case] = ACTIONS(747), - [anon_sym_object] = ACTIONS(747), - [anon_sym_class] = ACTIONS(747), - [anon_sym_trait] = ACTIONS(747), - [anon_sym_val] = ACTIONS(747), - [anon_sym_var] = ACTIONS(747), - [anon_sym_type] = ACTIONS(747), - [anon_sym_def] = ACTIONS(747), - [anon_sym_abstract] = ACTIONS(747), - [anon_sym_final] = ACTIONS(747), - [anon_sym_sealed] = ACTIONS(747), - [anon_sym_implicit] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(747), - [anon_sym_override] = ACTIONS(747), - [anon_sym_private] = ACTIONS(747), - [anon_sym_protected] = ACTIONS(747), + [sym_parameters] = STATE(446), + [sym_block] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(719), + [anon_sym_package] = ACTIONS(719), + [anon_sym_import] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_case] = ACTIONS(719), + [anon_sym_object] = ACTIONS(719), + [anon_sym_class] = ACTIONS(719), + [anon_sym_trait] = ACTIONS(719), + [anon_sym_val] = ACTIONS(719), + [anon_sym_COLON] = ACTIONS(749), + [anon_sym_EQ] = ACTIONS(751), + [anon_sym_var] = ACTIONS(719), + [anon_sym_type] = ACTIONS(719), + [anon_sym_def] = ACTIONS(719), + [anon_sym_abstract] = ACTIONS(719), + [anon_sym_final] = ACTIONS(719), + [anon_sym_sealed] = ACTIONS(719), + [anon_sym_implicit] = ACTIONS(719), + [anon_sym_lazy] = ACTIONS(719), + [anon_sym_override] = ACTIONS(719), + [anon_sym_private] = ACTIONS(719), + [anon_sym_protected] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(162), [sym_comment] = ACTIONS(34), }, [243] = { - [sym_package_clause] = STATE(14), - [sym_import_declaration] = STATE(14), - [sym_object_definition] = STATE(14), - [sym_class_definition] = STATE(14), - [sym_trait_definition] = STATE(14), - [sym_val_definition] = STATE(14), - [sym_val_declaration] = STATE(14), - [sym_var_declaration] = STATE(14), - [sym_var_definition] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_function_definition] = STATE(14), - [sym_function_declaration] = STATE(14), - [sym_modifiers] = STATE(105), - [aux_sym_compilation_unit_repeat1] = STATE(243), - [aux_sym_modifiers_repeat1] = STATE(17), - [anon_sym_package] = ACTIONS(166), - [anon_sym_import] = ACTIONS(169), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_case] = ACTIONS(749), - [anon_sym_object] = ACTIONS(175), - [anon_sym_class] = ACTIONS(752), - [anon_sym_trait] = ACTIONS(181), - [anon_sym_val] = ACTIONS(755), - [anon_sym_var] = ACTIONS(758), - [anon_sym_type] = ACTIONS(761), - [anon_sym_def] = ACTIONS(764), - [anon_sym_abstract] = ACTIONS(196), - [anon_sym_final] = ACTIONS(196), - [anon_sym_sealed] = ACTIONS(196), - [anon_sym_implicit] = ACTIONS(196), - [anon_sym_lazy] = ACTIONS(196), - [anon_sym_override] = ACTIONS(196), - [anon_sym_private] = ACTIONS(196), - [anon_sym_protected] = ACTIONS(196), + [aux_sym_import_selectors_repeat1] = STATE(450), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_EQ_GT] = ACTIONS(763), [sym_comment] = ACTIONS(34), }, [244] = { - [sym__type_parameter] = STATE(438), - [anon_sym__] = ACTIONS(228), - [sym_identifier] = ACTIONS(230), + [aux_sym_import_selectors_repeat1] = STATE(450), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(761), [sym_comment] = ACTIONS(34), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(767), - [anon_sym_package] = ACTIONS(767), - [anon_sym_import] = ACTIONS(767), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_case] = ACTIONS(767), - [anon_sym_object] = ACTIONS(767), - [anon_sym_class] = ACTIONS(767), - [anon_sym_trait] = ACTIONS(767), - [anon_sym_val] = ACTIONS(767), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_var] = ACTIONS(767), - [anon_sym_type] = ACTIONS(767), - [anon_sym_def] = ACTIONS(767), - [anon_sym_abstract] = ACTIONS(767), - [anon_sym_final] = ACTIONS(767), - [anon_sym_sealed] = ACTIONS(767), - [anon_sym_implicit] = ACTIONS(767), - [anon_sym_lazy] = ACTIONS(767), - [anon_sym_override] = ACTIONS(767), - [anon_sym_private] = ACTIONS(767), - [anon_sym_protected] = ACTIONS(767), - [anon_sym_extends] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(767), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_package] = ACTIONS(765), + [anon_sym_import] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_case] = ACTIONS(765), + [anon_sym_object] = ACTIONS(765), + [anon_sym_class] = ACTIONS(765), + [anon_sym_trait] = ACTIONS(765), + [anon_sym_val] = ACTIONS(765), + [anon_sym_var] = ACTIONS(765), + [anon_sym_type] = ACTIONS(765), + [anon_sym_def] = ACTIONS(765), + [anon_sym_abstract] = ACTIONS(765), + [anon_sym_final] = ACTIONS(765), + [anon_sym_sealed] = ACTIONS(765), + [anon_sym_implicit] = ACTIONS(765), + [anon_sym_lazy] = ACTIONS(765), + [anon_sym_override] = ACTIONS(765), + [anon_sym_private] = ACTIONS(765), + [anon_sym_protected] = ACTIONS(765), [sym_comment] = ACTIONS(34), }, [246] = { - [aux_sym_type_parameters_repeat1] = STATE(440), - [anon_sym_COMMA] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(769), + [sym_template_body] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_package] = ACTIONS(765), + [anon_sym_import] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_case] = ACTIONS(765), + [anon_sym_object] = ACTIONS(765), + [anon_sym_class] = ACTIONS(765), + [anon_sym_trait] = ACTIONS(765), + [anon_sym_val] = ACTIONS(765), + [anon_sym_var] = ACTIONS(765), + [anon_sym_type] = ACTIONS(765), + [anon_sym_def] = ACTIONS(765), + [anon_sym_abstract] = ACTIONS(765), + [anon_sym_final] = ACTIONS(765), + [anon_sym_sealed] = ACTIONS(765), + [anon_sym_implicit] = ACTIONS(765), + [anon_sym_lazy] = ACTIONS(765), + [anon_sym_override] = ACTIONS(765), + [anon_sym_private] = ACTIONS(765), + [anon_sym_protected] = ACTIONS(765), [sym_comment] = ACTIONS(34), }, [247] = { - [anon_sym_EQ_GT] = ACTIONS(771), + [sym_template_body] = STATE(451), + [sym_extends_clause] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_package] = ACTIONS(765), + [anon_sym_import] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_case] = ACTIONS(765), + [anon_sym_object] = ACTIONS(765), + [anon_sym_class] = ACTIONS(765), + [anon_sym_trait] = ACTIONS(765), + [anon_sym_val] = ACTIONS(765), + [anon_sym_var] = ACTIONS(765), + [anon_sym_type] = ACTIONS(765), + [anon_sym_def] = ACTIONS(765), + [anon_sym_abstract] = ACTIONS(765), + [anon_sym_final] = ACTIONS(765), + [anon_sym_sealed] = ACTIONS(765), + [anon_sym_implicit] = ACTIONS(765), + [anon_sym_lazy] = ACTIONS(765), + [anon_sym_override] = ACTIONS(765), + [anon_sym_private] = ACTIONS(765), + [anon_sym_protected] = ACTIONS(765), + [anon_sym_extends] = ACTIONS(108), [sym_comment] = ACTIONS(34), }, [248] = { - [sym_type_arguments] = STATE(443), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_RBRACK] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_with] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(424), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(767), + [sym_comment] = ACTIONS(34), }, [249] = { - [aux_sym_parameter_types_repeat1] = STATE(448), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(779), - [anon_sym_with] = ACTIONS(781), - [sym_identifier] = ACTIONS(783), - [sym_operator_identifier] = ACTIONS(785), - [sym_comment] = ACTIONS(432), + [sym_type_parameters] = STATE(455), + [sym_template_body] = STATE(54), + [sym_extends_clause] = STATE(55), + [sym_class_parameters] = STATE(456), + [anon_sym_package] = ACTIONS(104), + [anon_sym_import] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(104), + [anon_sym_case] = ACTIONS(104), + [anon_sym_object] = ACTIONS(104), + [anon_sym_class] = ACTIONS(104), + [anon_sym_trait] = ACTIONS(104), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_val] = ACTIONS(104), + [anon_sym_var] = ACTIONS(104), + [anon_sym_type] = ACTIONS(104), + [anon_sym_def] = ACTIONS(104), + [anon_sym_abstract] = ACTIONS(104), + [anon_sym_final] = ACTIONS(104), + [anon_sym_sealed] = ACTIONS(104), + [anon_sym_implicit] = ACTIONS(104), + [anon_sym_lazy] = ACTIONS(104), + [anon_sym_override] = ACTIONS(104), + [anon_sym_private] = ACTIONS(104), + [anon_sym_protected] = ACTIONS(104), + [anon_sym_extends] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(110), + [sym_comment] = ACTIONS(34), }, [250] = { - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_RBRACK] = ACTIONS(442), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(444), - [sym_comment] = ACTIONS(432), + [aux_sym_val_declaration_repeat1] = STATE(459), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [251] = { - [sym_type_arguments] = STATE(449), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_RBRACK] = ACTIONS(442), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(444), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [252] = { - [anon_sym_DOT] = ACTIONS(773), + [aux_sym_val_declaration_repeat1] = STATE(463), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [253] = { - [anon_sym_EQ_GT] = ACTIONS(787), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [254] = { - [sym_identifier] = ACTIONS(789), + [sym_type_parameters] = STATE(466), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(783), [sym_comment] = ACTIONS(34), }, [255] = { - [sym__type] = STATE(452), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_type_parameters] = STATE(469), + [sym_parameters] = STATE(470), + [sym_block] = STATE(88), + [anon_sym_package] = ACTIONS(154), + [anon_sym_import] = ACTIONS(154), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_case] = ACTIONS(154), + [anon_sym_object] = ACTIONS(154), + [anon_sym_class] = ACTIONS(154), + [anon_sym_trait] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_val] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(785), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_var] = ACTIONS(154), + [anon_sym_type] = ACTIONS(154), + [anon_sym_def] = ACTIONS(154), + [anon_sym_abstract] = ACTIONS(154), + [anon_sym_final] = ACTIONS(154), + [anon_sym_sealed] = ACTIONS(154), + [anon_sym_implicit] = ACTIONS(154), + [anon_sym_lazy] = ACTIONS(154), + [anon_sym_override] = ACTIONS(154), + [anon_sym_private] = ACTIONS(154), + [anon_sym_protected] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(162), [sym_comment] = ACTIONS(34), }, [256] = { - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_case] = ACTIONS(793), - [anon_sym_object] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_trait] = ACTIONS(793), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_type] = ACTIONS(793), - [anon_sym_def] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_implicit] = ACTIONS(793), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_override] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [anon_sym_class] = ACTIONS(789), + [sym_comment] = ACTIONS(34), }, [257] = { - [sym__type] = STATE(454), - [sym_compound_type] = STATE(112), - [sym_infix_type] = STATE(112), - [sym_stable_type_identifier] = STATE(113), - [sym_stable_identifier] = STATE(114), - [sym_generic_type] = STATE(112), - [sym_function_type] = STATE(112), - [sym_parameter_types] = STATE(115), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(234), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(473), + [sym_alternative_pattern] = STATE(473), + [sym_typed_pattern] = STATE(473), + [sym_tuple_pattern] = STATE(473), + [sym_parenthesized_pattern] = STATE(473), + [sym_wildcard] = STATE(473), + [sym_string] = STATE(473), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(791), + [sym_number] = ACTIONS(793), [sym_comment] = ACTIONS(34), }, [258] = { - [sym__type] = STATE(455), - [sym_compound_type] = STATE(112), - [sym_infix_type] = STATE(112), - [sym_stable_type_identifier] = STATE(113), - [sym_stable_identifier] = STATE(114), - [sym_generic_type] = STATE(112), - [sym_function_type] = STATE(112), - [sym_parameter_types] = STATE(115), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(234), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(475), + [sym_alternative_pattern] = STATE(475), + [sym_typed_pattern] = STATE(475), + [sym_tuple_pattern] = STATE(475), + [sym_parenthesized_pattern] = STATE(475), + [sym_wildcard] = STATE(475), + [sym_string] = STATE(475), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(795), + [sym_number] = ACTIONS(797), [sym_comment] = ACTIONS(34), }, [259] = { - [ts_builtin_sym_end] = ACTIONS(797), - [anon_sym_package] = ACTIONS(799), - [anon_sym_import] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_case] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_class] = ACTIONS(799), - [anon_sym_trait] = ACTIONS(799), - [anon_sym_val] = ACTIONS(799), - [anon_sym_var] = ACTIONS(799), - [anon_sym_type] = ACTIONS(799), - [anon_sym_def] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(799), - [anon_sym_final] = ACTIONS(799), - [anon_sym_sealed] = ACTIONS(799), - [anon_sym_implicit] = ACTIONS(799), - [anon_sym_lazy] = ACTIONS(799), - [anon_sym_override] = ACTIONS(799), - [anon_sym_private] = ACTIONS(799), - [anon_sym_protected] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(799), + [sym_comment] = ACTIONS(34), }, [260] = { - [sym__type] = STATE(456), - [sym_compound_type] = STATE(112), - [sym_infix_type] = STATE(112), - [sym_stable_type_identifier] = STATE(113), - [sym_stable_identifier] = STATE(114), - [sym_generic_type] = STATE(112), - [sym_function_type] = STATE(112), - [sym_parameter_types] = STATE(115), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(234), + [sym_identifier] = ACTIONS(801), [sym_comment] = ACTIONS(34), }, [261] = { - [anon_sym_COMMA] = ACTIONS(803), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(803), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_package] = ACTIONS(803), + [anon_sym_import] = ACTIONS(803), + [anon_sym_RBRACE] = ACTIONS(803), + [anon_sym_case] = ACTIONS(803), + [anon_sym_object] = ACTIONS(803), + [anon_sym_class] = ACTIONS(803), + [anon_sym_trait] = ACTIONS(803), + [anon_sym_val] = ACTIONS(803), + [anon_sym_var] = ACTIONS(803), + [anon_sym_type] = ACTIONS(803), + [anon_sym_def] = ACTIONS(803), + [anon_sym_abstract] = ACTIONS(803), + [anon_sym_final] = ACTIONS(803), + [anon_sym_sealed] = ACTIONS(803), + [anon_sym_implicit] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(803), + [anon_sym_override] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), [sym_comment] = ACTIONS(34), }, [262] = { - [sym__type] = STATE(460), - [sym_compound_type] = STATE(461), - [sym_infix_type] = STATE(461), - [sym_stable_type_identifier] = STATE(462), - [sym_stable_identifier] = STATE(463), - [sym_generic_type] = STATE(461), - [sym_function_type] = STATE(461), - [sym_parameter_types] = STATE(464), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(809), + [sym_package_clause] = STATE(14), + [sym_import_declaration] = STATE(14), + [sym_object_definition] = STATE(14), + [sym_class_definition] = STATE(14), + [sym_trait_definition] = STATE(14), + [sym_val_definition] = STATE(14), + [sym_val_declaration] = STATE(14), + [sym_var_declaration] = STATE(14), + [sym_var_definition] = STATE(14), + [sym_type_definition] = STATE(14), + [sym_function_definition] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_modifiers] = STATE(111), + [aux_sym_compilation_unit_repeat1] = STATE(262), + [aux_sym_modifiers_repeat1] = STATE(17), + [anon_sym_package] = ACTIONS(180), + [anon_sym_import] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_case] = ACTIONS(805), + [anon_sym_object] = ACTIONS(189), + [anon_sym_class] = ACTIONS(808), + [anon_sym_trait] = ACTIONS(195), + [anon_sym_val] = ACTIONS(811), + [anon_sym_var] = ACTIONS(814), + [anon_sym_type] = ACTIONS(817), + [anon_sym_def] = ACTIONS(820), + [anon_sym_abstract] = ACTIONS(210), + [anon_sym_final] = ACTIONS(210), + [anon_sym_sealed] = ACTIONS(210), + [anon_sym_implicit] = ACTIONS(210), + [anon_sym_lazy] = ACTIONS(210), + [anon_sym_override] = ACTIONS(210), + [anon_sym_private] = ACTIONS(210), + [anon_sym_protected] = ACTIONS(210), [sym_comment] = ACTIONS(34), }, [263] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(465), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym__type_parameter] = STATE(478), + [anon_sym__] = ACTIONS(240), + [sym_identifier] = ACTIONS(242), [sym_comment] = ACTIONS(34), }, [264] = { - [sym_class_parameter] = STATE(466), - [anon_sym_val] = ACTIONS(236), - [anon_sym_var] = ACTIONS(236), - [sym_identifier] = ACTIONS(240), + [ts_builtin_sym_end] = ACTIONS(823), + [anon_sym_package] = ACTIONS(823), + [anon_sym_import] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(823), + [anon_sym_RBRACE] = ACTIONS(823), + [anon_sym_case] = ACTIONS(823), + [anon_sym_object] = ACTIONS(823), + [anon_sym_class] = ACTIONS(823), + [anon_sym_trait] = ACTIONS(823), + [anon_sym_val] = ACTIONS(823), + [anon_sym_COLON] = ACTIONS(823), + [anon_sym_EQ] = ACTIONS(823), + [anon_sym_var] = ACTIONS(823), + [anon_sym_type] = ACTIONS(823), + [anon_sym_def] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(823), + [anon_sym_final] = ACTIONS(823), + [anon_sym_sealed] = ACTIONS(823), + [anon_sym_implicit] = ACTIONS(823), + [anon_sym_lazy] = ACTIONS(823), + [anon_sym_override] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_extends] = ACTIONS(823), + [anon_sym_LPAREN] = ACTIONS(823), [sym_comment] = ACTIONS(34), }, [265] = { - [ts_builtin_sym_end] = ACTIONS(811), - [anon_sym_package] = ACTIONS(811), - [anon_sym_import] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_case] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_class] = ACTIONS(811), - [anon_sym_trait] = ACTIONS(811), - [anon_sym_val] = ACTIONS(811), - [anon_sym_var] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_def] = ACTIONS(811), - [anon_sym_abstract] = ACTIONS(811), - [anon_sym_final] = ACTIONS(811), - [anon_sym_sealed] = ACTIONS(811), - [anon_sym_implicit] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_extends] = ACTIONS(811), + [aux_sym_type_parameters_repeat1] = STATE(480), + [anon_sym_COMMA] = ACTIONS(446), + [anon_sym_RBRACK] = ACTIONS(825), [sym_comment] = ACTIONS(34), }, [266] = { - [aux_sym_class_parameters_repeat1] = STATE(468), - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_EQ_GT] = ACTIONS(827), [sym_comment] = ACTIONS(34), }, [267] = { - [sym_identifier] = ACTIONS(815), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(483), + [anon_sym_DOT] = ACTIONS(829), + [anon_sym_COMMA] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(831), + [anon_sym_RBRACK] = ACTIONS(454), + [anon_sym_RPAREN] = ACTIONS(454), + [anon_sym_with] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(456), + [sym_comment] = ACTIONS(464), }, [268] = { - [sym__type] = STATE(470), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(488), + [anon_sym_COMMA] = ACTIONS(833), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_with] = ACTIONS(837), + [sym_identifier] = ACTIONS(839), + [sym_operator_identifier] = ACTIONS(841), + [sym_comment] = ACTIONS(464), }, [269] = { - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_RBRACK] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(476), + [sym_comment] = ACTIONS(464), }, [270] = { - [sym__type] = STATE(471), - [sym_compound_type] = STATE(122), - [sym_infix_type] = STATE(122), - [sym_stable_type_identifier] = STATE(123), - [sym_stable_identifier] = STATE(124), - [sym_generic_type] = STATE(122), - [sym_function_type] = STATE(122), - [sym_parameter_types] = STATE(125), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(242), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(489), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(831), + [anon_sym_RBRACK] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(476), + [sym_comment] = ACTIONS(464), }, [271] = { - [sym__type] = STATE(472), - [sym_compound_type] = STATE(122), - [sym_infix_type] = STATE(122), - [sym_stable_type_identifier] = STATE(123), - [sym_stable_identifier] = STATE(124), - [sym_generic_type] = STATE(122), - [sym_function_type] = STATE(122), - [sym_parameter_types] = STATE(125), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(242), + [anon_sym_DOT] = ACTIONS(829), [sym_comment] = ACTIONS(34), }, [272] = { - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(843), + [sym_comment] = ACTIONS(34), }, [273] = { - [sym__type] = STATE(473), - [sym_compound_type] = STATE(122), - [sym_infix_type] = STATE(122), - [sym_stable_type_identifier] = STATE(123), - [sym_stable_identifier] = STATE(124), - [sym_generic_type] = STATE(122), - [sym_function_type] = STATE(122), - [sym_parameter_types] = STATE(125), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(242), + [sym_identifier] = ACTIONS(845), [sym_comment] = ACTIONS(34), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(817), - [anon_sym_package] = ACTIONS(817), - [anon_sym_import] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_case] = ACTIONS(817), - [anon_sym_object] = ACTIONS(817), - [anon_sym_class] = ACTIONS(817), - [anon_sym_trait] = ACTIONS(817), - [anon_sym_val] = ACTIONS(817), - [anon_sym_var] = ACTIONS(817), - [anon_sym_type] = ACTIONS(817), - [anon_sym_def] = ACTIONS(817), - [anon_sym_abstract] = ACTIONS(817), - [anon_sym_final] = ACTIONS(817), - [anon_sym_sealed] = ACTIONS(817), - [anon_sym_implicit] = ACTIONS(817), - [anon_sym_lazy] = ACTIONS(817), - [anon_sym_override] = ACTIONS(817), - [anon_sym_private] = ACTIONS(817), - [anon_sym_protected] = ACTIONS(817), + [sym__type] = STATE(492), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [275] = { - [sym__string_middle] = ACTIONS(631), - [sym__string_end] = ACTIONS(631), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(847), + [anon_sym_package] = ACTIONS(849), + [anon_sym_import] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_case] = ACTIONS(849), + [anon_sym_object] = ACTIONS(849), + [anon_sym_class] = ACTIONS(849), + [anon_sym_trait] = ACTIONS(849), + [anon_sym_val] = ACTIONS(849), + [anon_sym_var] = ACTIONS(849), + [anon_sym_type] = ACTIONS(849), + [anon_sym_def] = ACTIONS(849), + [anon_sym_abstract] = ACTIONS(849), + [anon_sym_final] = ACTIONS(849), + [anon_sym_sealed] = ACTIONS(849), + [anon_sym_implicit] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(849), + [anon_sym_override] = ACTIONS(849), + [anon_sym_private] = ACTIONS(849), + [anon_sym_protected] = ACTIONS(849), + [anon_sym_with] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [276] = { - [aux_sym_block_repeat1] = STATE(476), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LF] = ACTIONS(821), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(494), + [sym_compound_type] = STATE(118), + [sym_infix_type] = STATE(118), + [sym_stable_type_identifier] = STATE(119), + [sym_stable_identifier] = STATE(120), + [sym_generic_type] = STATE(118), + [sym_function_type] = STATE(118), + [sym_parameter_types] = STATE(121), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(246), + [sym_comment] = ACTIONS(34), }, [277] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(476), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LF] = ACTIONS(821), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(495), + [sym_compound_type] = STATE(118), + [sym_infix_type] = STATE(118), + [sym_stable_type_identifier] = STATE(119), + [sym_stable_identifier] = STATE(120), + [sym_generic_type] = STATE(118), + [sym_function_type] = STATE(118), + [sym_parameter_types] = STATE(121), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(246), + [sym_comment] = ACTIONS(34), }, [278] = { - [sym__string_middle] = ACTIONS(823), - [sym__string_end] = ACTIONS(823), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(853), + [anon_sym_package] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_case] = ACTIONS(855), + [anon_sym_object] = ACTIONS(855), + [anon_sym_class] = ACTIONS(855), + [anon_sym_trait] = ACTIONS(855), + [anon_sym_val] = ACTIONS(855), + [anon_sym_var] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_abstract] = ACTIONS(855), + [anon_sym_final] = ACTIONS(855), + [anon_sym_sealed] = ACTIONS(855), + [anon_sym_implicit] = ACTIONS(855), + [anon_sym_lazy] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [279] = { - [anon_sym_COMMA] = ACTIONS(825), - [anon_sym_EQ_GT] = ACTIONS(825), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_PIPE] = ACTIONS(825), - [anon_sym_if] = ACTIONS(825), + [sym__type] = STATE(496), + [sym_compound_type] = STATE(118), + [sym_infix_type] = STATE(118), + [sym_stable_type_identifier] = STATE(119), + [sym_stable_identifier] = STATE(120), + [sym_generic_type] = STATE(118), + [sym_function_type] = STATE(118), + [sym_parameter_types] = STATE(121), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(246), [sym_comment] = ACTIONS(34), }, [280] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(829), - [sym__string_end] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_RPAREN] = ACTIONS(859), [sym_comment] = ACTIONS(34), }, [281] = { - [sym__multiline_string_middle] = ACTIONS(631), - [sym__multiline_string_end] = ACTIONS(631), + [sym__type] = STATE(500), + [sym_compound_type] = STATE(501), + [sym_infix_type] = STATE(501), + [sym_stable_type_identifier] = STATE(502), + [sym_stable_identifier] = STATE(503), + [sym_generic_type] = STATE(501), + [sym_function_type] = STATE(501), + [sym_parameter_types] = STATE(504), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(865), [sym_comment] = ACTIONS(34), }, [282] = { - [aux_sym_block_repeat1] = STATE(479), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(505), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [283] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(479), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [sym_comment] = ACTIONS(432), + [sym_class_parameter] = STATE(506), + [anon_sym_val] = ACTIONS(248), + [anon_sym_var] = ACTIONS(248), + [sym_identifier] = ACTIONS(252), + [sym_comment] = ACTIONS(34), }, [284] = { - [sym__multiline_string_middle] = ACTIONS(836), - [sym__multiline_string_end] = ACTIONS(836), + [ts_builtin_sym_end] = ACTIONS(867), + [anon_sym_package] = ACTIONS(867), + [anon_sym_import] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_case] = ACTIONS(867), + [anon_sym_object] = ACTIONS(867), + [anon_sym_class] = ACTIONS(867), + [anon_sym_trait] = ACTIONS(867), + [anon_sym_val] = ACTIONS(867), + [anon_sym_var] = ACTIONS(867), + [anon_sym_type] = ACTIONS(867), + [anon_sym_def] = ACTIONS(867), + [anon_sym_abstract] = ACTIONS(867), + [anon_sym_final] = ACTIONS(867), + [anon_sym_sealed] = ACTIONS(867), + [anon_sym_implicit] = ACTIONS(867), + [anon_sym_lazy] = ACTIONS(867), + [anon_sym_override] = ACTIONS(867), + [anon_sym_private] = ACTIONS(867), + [anon_sym_protected] = ACTIONS(867), + [anon_sym_extends] = ACTIONS(867), [sym_comment] = ACTIONS(34), }, [285] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(838), - [sym__multiline_string_end] = ACTIONS(836), + [aux_sym_class_parameters_repeat1] = STATE(508), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(869), [sym_comment] = ACTIONS(34), }, [286] = { - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_RPAREN] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(136), + [sym_identifier] = ACTIONS(871), [sym_comment] = ACTIONS(34), }, [287] = { - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(262), - [anon_sym_RPAREN] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(136), + [sym__type] = STATE(510), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [288] = { - [sym_type_arguments] = STATE(482), - [anon_sym_DOT] = ACTIONS(843), - [anon_sym_COMMA] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_with] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), - }, - [289] = { - [anon_sym_COMMA] = ACTIONS(847), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(849), [anon_sym_with] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(512), [sym_identifier] = ACTIONS(851), [sym_operator_identifier] = ACTIONS(851), - [sym_comment] = ACTIONS(432), + [sym_comment] = ACTIONS(464), + }, + [289] = { + [sym__type] = STATE(511), + [sym_compound_type] = STATE(128), + [sym_infix_type] = STATE(128), + [sym_stable_type_identifier] = STATE(129), + [sym_stable_identifier] = STATE(130), + [sym_generic_type] = STATE(128), + [sym_function_type] = STATE(128), + [sym_parameter_types] = STATE(131), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(254), + [sym_comment] = ACTIONS(34), }, [290] = { - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_with] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(512), + [sym_compound_type] = STATE(128), + [sym_infix_type] = STATE(128), + [sym_stable_type_identifier] = STATE(129), + [sym_stable_identifier] = STATE(130), + [sym_generic_type] = STATE(128), + [sym_function_type] = STATE(128), + [sym_parameter_types] = STATE(131), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(254), + [sym_comment] = ACTIONS(34), }, [291] = { - [sym_type_arguments] = STATE(485), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_with] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [292] = { - [anon_sym_DOT] = ACTIONS(843), + [sym__type] = STATE(513), + [sym_compound_type] = STATE(128), + [sym_infix_type] = STATE(128), + [sym_stable_type_identifier] = STATE(129), + [sym_stable_identifier] = STATE(130), + [sym_generic_type] = STATE(128), + [sym_function_type] = STATE(128), + [sym_parameter_types] = STATE(131), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(254), [sym_comment] = ACTIONS(34), }, [293] = { - [anon_sym_EQ_GT] = ACTIONS(853), + [ts_builtin_sym_end] = ACTIONS(873), + [anon_sym_package] = ACTIONS(873), + [anon_sym_import] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_case] = ACTIONS(873), + [anon_sym_object] = ACTIONS(873), + [anon_sym_class] = ACTIONS(873), + [anon_sym_trait] = ACTIONS(873), + [anon_sym_val] = ACTIONS(873), + [anon_sym_var] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_def] = ACTIONS(873), + [anon_sym_abstract] = ACTIONS(873), + [anon_sym_final] = ACTIONS(873), + [anon_sym_sealed] = ACTIONS(873), + [anon_sym_implicit] = ACTIONS(873), + [anon_sym_lazy] = ACTIONS(873), + [anon_sym_override] = ACTIONS(873), + [anon_sym_private] = ACTIONS(873), + [anon_sym_protected] = ACTIONS(873), [sym_comment] = ACTIONS(34), }, [294] = { - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_EQ_GT] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_if] = ACTIONS(855), + [sym__string_middle] = ACTIONS(665), + [sym__string_end] = ACTIONS(665), [sym_comment] = ACTIONS(34), }, [295] = { - [aux_sym_case_class_pattern_repeat1] = STATE(295), - [anon_sym_COMMA] = ACTIONS(859), - [anon_sym_RPAREN] = ACTIONS(841), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(516), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(877), + [sym_comment] = ACTIONS(464), }, [296] = { - [sym_identifier] = ACTIONS(862), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(516), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(877), + [sym_comment] = ACTIONS(464), }, [297] = { - [sym__type] = STATE(488), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym__string_middle] = ACTIONS(879), + [sym__string_end] = ACTIONS(879), [sym_comment] = ACTIONS(34), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_case] = ACTIONS(793), - [anon_sym_object] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_trait] = ACTIONS(793), - [anon_sym_val] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_type] = ACTIONS(793), - [anon_sym_def] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_implicit] = ACTIONS(793), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_override] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(881), + [anon_sym_COLON] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_if] = ACTIONS(881), + [sym_comment] = ACTIONS(34), }, [299] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(489), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(885), + [sym__string_end] = ACTIONS(879), [sym_comment] = ACTIONS(34), }, [300] = { - [sym__type] = STATE(490), - [sym_compound_type] = STATE(145), - [sym_infix_type] = STATE(145), - [sym_stable_type_identifier] = STATE(146), - [sym_stable_identifier] = STATE(147), - [sym_generic_type] = STATE(145), - [sym_function_type] = STATE(145), - [sym_parameter_types] = STATE(148), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(270), + [sym__multiline_string_middle] = ACTIONS(665), + [sym__multiline_string_end] = ACTIONS(665), [sym_comment] = ACTIONS(34), }, [301] = { - [sym__type] = STATE(491), - [sym_compound_type] = STATE(145), - [sym_infix_type] = STATE(145), - [sym_stable_type_identifier] = STATE(146), - [sym_stable_identifier] = STATE(147), - [sym_generic_type] = STATE(145), - [sym_function_type] = STATE(145), - [sym_parameter_types] = STATE(148), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(270), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(519), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_LF] = ACTIONS(890), + [sym_comment] = ACTIONS(464), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(797), - [anon_sym_package] = ACTIONS(799), - [anon_sym_import] = ACTIONS(799), - [anon_sym_case] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_class] = ACTIONS(799), - [anon_sym_trait] = ACTIONS(799), - [anon_sym_val] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(799), - [anon_sym_EQ] = ACTIONS(799), - [anon_sym_var] = ACTIONS(799), - [anon_sym_type] = ACTIONS(799), - [anon_sym_def] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(799), - [anon_sym_final] = ACTIONS(799), - [anon_sym_sealed] = ACTIONS(799), - [anon_sym_implicit] = ACTIONS(799), - [anon_sym_lazy] = ACTIONS(799), - [anon_sym_override] = ACTIONS(799), - [anon_sym_private] = ACTIONS(799), - [anon_sym_protected] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(519), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_LF] = ACTIONS(890), + [sym_comment] = ACTIONS(464), }, [303] = { - [sym__type] = STATE(492), - [sym_compound_type] = STATE(145), - [sym_infix_type] = STATE(145), - [sym_stable_type_identifier] = STATE(146), - [sym_stable_identifier] = STATE(147), - [sym_generic_type] = STATE(145), - [sym_function_type] = STATE(145), - [sym_parameter_types] = STATE(148), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(270), + [sym__multiline_string_middle] = ACTIONS(892), + [sym__multiline_string_end] = ACTIONS(892), [sym_comment] = ACTIONS(34), }, [304] = { - [aux_sym_string_repeat1] = STATE(494), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(864), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(894), + [sym__multiline_string_end] = ACTIONS(892), [sym_comment] = ACTIONS(34), }, [305] = { - [aux_sym_string_repeat2] = STATE(495), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(631), - [anon_sym_package] = ACTIONS(866), - [anon_sym_import] = ACTIONS(866), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_case] = ACTIONS(866), - [anon_sym_object] = ACTIONS(866), - [anon_sym_class] = ACTIONS(866), - [anon_sym_trait] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_val] = ACTIONS(866), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_var] = ACTIONS(866), - [anon_sym_type] = ACTIONS(866), - [anon_sym_def] = ACTIONS(866), - [anon_sym_abstract] = ACTIONS(866), - [anon_sym_final] = ACTIONS(866), - [anon_sym_sealed] = ACTIONS(866), - [anon_sym_implicit] = ACTIONS(866), - [anon_sym_lazy] = ACTIONS(866), - [anon_sym_override] = ACTIONS(866), - [anon_sym_private] = ACTIONS(866), - [anon_sym_protected] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_match] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [307] = { - [aux_sym_block_repeat1] = STATE(498), - [anon_sym_RBRACE] = ACTIONS(870), - [anon_sym_SEMI] = ACTIONS(872), - [anon_sym_LF] = ACTIONS(872), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(522), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_COLON] = ACTIONS(456), + [anon_sym_RPAREN] = ACTIONS(454), + [anon_sym_with] = ACTIONS(456), + [anon_sym_PIPE] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [308] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(498), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(872), - [anon_sym_LF] = ACTIONS(872), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_with] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(907), + [sym_operator_identifier] = ACTIONS(907), + [sym_comment] = ACTIONS(464), }, [309] = { - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(110), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_RPAREN] = ACTIONS(110), - [anon_sym_match] = ACTIONS(112), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_with] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [310] = { - [sym_interpolation] = STATE(499), - [anon_sym_DOLLAR] = ACTIONS(114), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(525), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_with] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [311] = { - [sym_interpolation] = STATE(500), - [anon_sym_DOLLAR] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(899), [sym_comment] = ACTIONS(34), }, [312] = { - [sym_package_clause] = STATE(502), - [sym_import_declaration] = STATE(502), - [sym_object_definition] = STATE(502), - [sym_class_definition] = STATE(502), - [sym_trait_definition] = STATE(502), - [sym_val_definition] = STATE(502), - [sym_val_declaration] = STATE(502), - [sym_var_declaration] = STATE(502), - [sym_var_definition] = STATE(502), - [sym_type_definition] = STATE(502), - [sym_function_definition] = STATE(502), - [sym_function_declaration] = STATE(502), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(503), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(909), [sym_comment] = ACTIONS(34), }, [313] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(504), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_EQ_GT] = ACTIONS(911), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_EQ] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), [sym_comment] = ACTIONS(34), }, [314] = { - [sym_parenthesized_expression] = STATE(505), - [anon_sym_LPAREN] = ACTIONS(546), + [aux_sym_case_class_pattern_repeat1] = STATE(314), + [anon_sym_COMMA] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(897), [sym_comment] = ACTIONS(34), }, [315] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(506), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym_identifier] = ACTIONS(918), [sym_comment] = ACTIONS(34), }, [316] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(507), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym__type] = STATE(528), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [317] = { - [sym_string] = STATE(508), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(847), + [anon_sym_package] = ACTIONS(849), + [anon_sym_import] = ACTIONS(849), + [anon_sym_case] = ACTIONS(849), + [anon_sym_object] = ACTIONS(849), + [anon_sym_class] = ACTIONS(849), + [anon_sym_trait] = ACTIONS(849), + [anon_sym_val] = ACTIONS(849), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_var] = ACTIONS(849), + [anon_sym_type] = ACTIONS(849), + [anon_sym_def] = ACTIONS(849), + [anon_sym_abstract] = ACTIONS(849), + [anon_sym_final] = ACTIONS(849), + [anon_sym_sealed] = ACTIONS(849), + [anon_sym_implicit] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(849), + [anon_sym_override] = ACTIONS(849), + [anon_sym_private] = ACTIONS(849), + [anon_sym_protected] = ACTIONS(849), + [anon_sym_with] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [318] = { - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(164), + [sym__expression] = STATE(529), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), + [sym_comment] = ACTIONS(34), }, [319] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(519), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(530), + [sym_compound_type] = STATE(151), + [sym_infix_type] = STATE(151), + [sym_stable_type_identifier] = STATE(152), + [sym_stable_identifier] = STATE(153), + [sym_generic_type] = STATE(151), + [sym_function_type] = STATE(151), + [sym_parameter_types] = STATE(154), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(282), + [sym_comment] = ACTIONS(34), }, [320] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(523), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(892), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym__type] = STATE(531), + [sym_compound_type] = STATE(151), + [sym_infix_type] = STATE(151), + [sym_stable_type_identifier] = STATE(152), + [sym_stable_identifier] = STATE(153), + [sym_generic_type] = STATE(151), + [sym_function_type] = STATE(151), + [sym_parameter_types] = STATE(154), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(282), [sym_comment] = ACTIONS(34), }, [321] = { - [sym_block] = STATE(533), - [sym__expression] = STATE(534), - [sym_if_expression] = STATE(533), - [sym_match_expression] = STATE(533), - [sym_assignment_expression] = STATE(533), - [sym_generic_function] = STATE(533), - [sym_call_expression] = STATE(533), - [sym_field_expression] = STATE(533), - [sym_instance_expression] = STATE(533), - [sym_infix_expression] = STATE(533), - [sym_prefix_expression] = STATE(533), - [sym_tuple_expression] = STATE(533), - [sym_parenthesized_expression] = STATE(533), - [sym_string_transform_expression] = STATE(533), - [sym_string] = STATE(533), - [sym__simple_string] = ACTIONS(898), - [sym__string_start] = ACTIONS(900), - [sym__multiline_string_start] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_if] = ACTIONS(908), - [anon_sym_new] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [sym_identifier] = ACTIONS(914), - [sym_number] = ACTIONS(916), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(853), + [anon_sym_package] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_case] = ACTIONS(855), + [anon_sym_object] = ACTIONS(855), + [anon_sym_class] = ACTIONS(855), + [anon_sym_trait] = ACTIONS(855), + [anon_sym_val] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_var] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_abstract] = ACTIONS(855), + [anon_sym_final] = ACTIONS(855), + [anon_sym_sealed] = ACTIONS(855), + [anon_sym_implicit] = ACTIONS(855), + [anon_sym_lazy] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [322] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(918), - [anon_sym_package] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(920), - [anon_sym_object] = ACTIONS(920), - [anon_sym_class] = ACTIONS(920), - [anon_sym_trait] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_var] = ACTIONS(920), - [anon_sym_type] = ACTIONS(920), - [anon_sym_def] = ACTIONS(920), - [anon_sym_abstract] = ACTIONS(920), - [anon_sym_final] = ACTIONS(920), - [anon_sym_sealed] = ACTIONS(920), - [anon_sym_implicit] = ACTIONS(920), - [anon_sym_lazy] = ACTIONS(920), - [anon_sym_override] = ACTIONS(920), - [anon_sym_private] = ACTIONS(920), - [anon_sym_protected] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(532), + [sym_compound_type] = STATE(151), + [sym_infix_type] = STATE(151), + [sym_stable_type_identifier] = STATE(152), + [sym_stable_identifier] = STATE(153), + [sym_generic_type] = STATE(151), + [sym_function_type] = STATE(151), + [sym_parameter_types] = STATE(154), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(282), + [sym_comment] = ACTIONS(34), }, [323] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(924), - [anon_sym_package] = ACTIONS(926), - [anon_sym_import] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(926), - [anon_sym_object] = ACTIONS(926), - [anon_sym_class] = ACTIONS(926), - [anon_sym_trait] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_var] = ACTIONS(926), - [anon_sym_type] = ACTIONS(926), - [anon_sym_def] = ACTIONS(926), - [anon_sym_abstract] = ACTIONS(926), - [anon_sym_final] = ACTIONS(926), - [anon_sym_sealed] = ACTIONS(926), - [anon_sym_implicit] = ACTIONS(926), - [anon_sym_lazy] = ACTIONS(926), - [anon_sym_override] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_protected] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(534), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(920), + [sym_comment] = ACTIONS(34), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_package] = ACTIONS(932), - [anon_sym_import] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_case] = ACTIONS(932), - [anon_sym_object] = ACTIONS(932), - [anon_sym_class] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_val] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_var] = ACTIONS(932), - [anon_sym_type] = ACTIONS(932), - [anon_sym_def] = ACTIONS(932), - [anon_sym_abstract] = ACTIONS(932), - [anon_sym_final] = ACTIONS(932), - [anon_sym_sealed] = ACTIONS(932), - [anon_sym_implicit] = ACTIONS(932), - [anon_sym_lazy] = ACTIONS(932), - [anon_sym_override] = ACTIONS(932), - [anon_sym_private] = ACTIONS(932), - [anon_sym_protected] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_match] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(535), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(920), + [sym_comment] = ACTIONS(34), }, [325] = { - [sym_identifier] = ACTIONS(936), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(665), + [anon_sym_package] = ACTIONS(922), + [anon_sym_import] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_case] = ACTIONS(922), + [anon_sym_object] = ACTIONS(922), + [anon_sym_class] = ACTIONS(922), + [anon_sym_trait] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_val] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_var] = ACTIONS(922), + [anon_sym_type] = ACTIONS(922), + [anon_sym_def] = ACTIONS(922), + [anon_sym_abstract] = ACTIONS(922), + [anon_sym_final] = ACTIONS(922), + [anon_sym_sealed] = ACTIONS(922), + [anon_sym_implicit] = ACTIONS(922), + [anon_sym_lazy] = ACTIONS(922), + [anon_sym_override] = ACTIONS(922), + [anon_sym_private] = ACTIONS(922), + [anon_sym_protected] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_match] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [326] = { - [sym__type] = STATE(536), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(537), + [sym_alternative_pattern] = STATE(537), + [sym_typed_pattern] = STATE(537), + [sym_tuple_pattern] = STATE(537), + [sym_parenthesized_pattern] = STATE(537), + [sym_wildcard] = STATE(537), + [sym_string] = STATE(537), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym_object] = ACTIONS(926), + [anon_sym_class] = ACTIONS(928), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(930), + [sym_number] = ACTIONS(932), [sym_comment] = ACTIONS(34), }, [327] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(537), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(540), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym_LF] = ACTIONS(936), + [sym_comment] = ACTIONS(464), }, [328] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(539), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(540), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym_LF] = ACTIONS(936), + [sym_comment] = ACTIONS(464), }, [329] = { - [sym_case_block] = STATE(541), - [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_case] = ACTIONS(938), [sym_comment] = ACTIONS(34), }, [330] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(542), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_case] = ACTIONS(942), [sym_comment] = ACTIONS(34), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(942), - [anon_sym_package] = ACTIONS(944), - [anon_sym_import] = ACTIONS(944), - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_case] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_class] = ACTIONS(944), - [anon_sym_trait] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_val] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_var] = ACTIONS(944), - [anon_sym_type] = ACTIONS(944), - [anon_sym_def] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(944), - [anon_sym_final] = ACTIONS(944), - [anon_sym_sealed] = ACTIONS(944), - [anon_sym_implicit] = ACTIONS(944), - [anon_sym_lazy] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_match] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_RPAREN] = ACTIONS(114), + [anon_sym_match] = ACTIONS(116), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(948), - [anon_sym_package] = ACTIONS(950), - [anon_sym_import] = ACTIONS(950), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_case] = ACTIONS(950), - [anon_sym_object] = ACTIONS(950), - [anon_sym_class] = ACTIONS(950), - [anon_sym_trait] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_val] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_var] = ACTIONS(950), - [anon_sym_type] = ACTIONS(950), - [anon_sym_def] = ACTIONS(950), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_final] = ACTIONS(950), - [anon_sym_sealed] = ACTIONS(950), - [anon_sym_implicit] = ACTIONS(950), - [anon_sym_lazy] = ACTIONS(950), - [anon_sym_override] = ACTIONS(950), - [anon_sym_private] = ACTIONS(950), - [anon_sym_protected] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_match] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(544), + [anon_sym_DOLLAR] = ACTIONS(118), + [sym_comment] = ACTIONS(34), }, [333] = { - [anon_sym_COMMA] = ACTIONS(954), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_COLON] = ACTIONS(954), - [anon_sym_EQ] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), + [sym_interpolation] = STATE(545), + [anon_sym_DOLLAR] = ACTIONS(120), [sym_comment] = ACTIONS(34), }, [334] = { - [aux_sym_case_class_pattern_repeat1] = STATE(295), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_RPAREN] = ACTIONS(958), + [sym_package_clause] = STATE(547), + [sym_import_declaration] = STATE(547), + [sym_object_definition] = STATE(547), + [sym_class_definition] = STATE(547), + [sym_trait_definition] = STATE(547), + [sym_val_definition] = STATE(547), + [sym_val_declaration] = STATE(547), + [sym_var_declaration] = STATE(547), + [sym_var_definition] = STATE(547), + [sym_type_definition] = STATE(547), + [sym_function_definition] = STATE(547), + [sym_function_declaration] = STATE(547), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(548), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(549), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [335] = { - [sym__type] = STATE(544), - [sym_compound_type] = STATE(169), - [sym_infix_type] = STATE(169), - [sym_stable_type_identifier] = STATE(170), - [sym_stable_identifier] = STATE(171), - [sym_generic_type] = STATE(169), - [sym_function_type] = STATE(169), - [sym_parameter_types] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(304), + [sym_block] = STATE(340), + [sym__expression] = STATE(550), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(960), - [anon_sym_package] = ACTIONS(962), - [anon_sym_import] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_object] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(962), - [anon_sym_val] = ACTIONS(962), - [anon_sym_var] = ACTIONS(962), - [anon_sym_type] = ACTIONS(962), - [anon_sym_def] = ACTIONS(962), - [anon_sym_abstract] = ACTIONS(962), - [anon_sym_final] = ACTIONS(962), - [anon_sym_sealed] = ACTIONS(962), - [anon_sym_implicit] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(962), - [anon_sym_override] = ACTIONS(962), - [anon_sym_private] = ACTIONS(962), - [anon_sym_protected] = ACTIONS(962), - [anon_sym_with] = ACTIONS(617), - [sym_identifier] = ACTIONS(619), - [sym_operator_identifier] = ACTIONS(621), - [sym_comment] = ACTIONS(432), + [sym_parenthesized_expression] = STATE(551), + [anon_sym_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(34), }, [337] = { - [sym_identifier] = ACTIONS(964), + [sym_block] = STATE(340), + [sym__expression] = STATE(552), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [338] = { - [sym__type] = STATE(546), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_block] = STATE(340), + [sym__expression] = STATE(553), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [339] = { - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [sym_string] = STATE(554), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(582), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [340] = { - [sym__type] = STATE(547), - [sym_compound_type] = STATE(169), - [sym_infix_type] = STATE(169), - [sym_stable_type_identifier] = STATE(170), - [sym_stable_identifier] = STATE(171), - [sym_generic_type] = STATE(169), - [sym_function_type] = STATE(169), - [sym_parameter_types] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(304), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(582), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [341] = { - [sym__type] = STATE(548), - [sym_compound_type] = STATE(169), - [sym_infix_type] = STATE(169), - [sym_stable_type_identifier] = STATE(170), - [sym_stable_identifier] = STATE(171), - [sym_generic_type] = STATE(169), - [sym_function_type] = STATE(169), - [sym_parameter_types] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(304), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(565), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [342] = { - [anon_sym_COLON] = ACTIONS(799), - [anon_sym_EQ] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(569), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(962), + [anon_sym_new] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [343] = { - [sym__type] = STATE(549), - [sym_compound_type] = STATE(169), - [sym_infix_type] = STATE(169), - [sym_stable_type_identifier] = STATE(170), - [sym_stable_identifier] = STATE(171), - [sym_generic_type] = STATE(169), - [sym_function_type] = STATE(169), - [sym_parameter_types] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(304), + [sym_block] = STATE(579), + [sym__expression] = STATE(580), + [sym_if_expression] = STATE(579), + [sym_match_expression] = STATE(579), + [sym_case_block] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_generic_function] = STATE(579), + [sym_call_expression] = STATE(579), + [sym_field_expression] = STATE(579), + [sym_instance_expression] = STATE(579), + [sym_infix_expression] = STATE(579), + [sym_prefix_expression] = STATE(579), + [sym_tuple_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(579), + [sym_string_transform_expression] = STATE(579), + [sym_string] = STATE(579), + [sym__simple_string] = ACTIONS(968), + [sym__string_start] = ACTIONS(970), + [sym__multiline_string_start] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_if] = ACTIONS(978), + [anon_sym_new] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [sym_number] = ACTIONS(986), [sym_comment] = ACTIONS(34), }, [344] = { - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_EQ_GT] = ACTIONS(966), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(988), + [anon_sym_package] = ACTIONS(990), + [anon_sym_import] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(990), + [anon_sym_object] = ACTIONS(990), + [anon_sym_class] = ACTIONS(990), + [anon_sym_trait] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_var] = ACTIONS(990), + [anon_sym_type] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_abstract] = ACTIONS(990), + [anon_sym_final] = ACTIONS(990), + [anon_sym_sealed] = ACTIONS(990), + [anon_sym_implicit] = ACTIONS(990), + [anon_sym_lazy] = ACTIONS(990), + [anon_sym_override] = ACTIONS(990), + [anon_sym_private] = ACTIONS(990), + [anon_sym_protected] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [345] = { - [aux_sym_case_class_pattern_repeat1] = STATE(295), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_RPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(994), + [anon_sym_package] = ACTIONS(996), + [anon_sym_import] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_class] = ACTIONS(996), + [anon_sym_trait] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_var] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_def] = ACTIONS(996), + [anon_sym_abstract] = ACTIONS(996), + [anon_sym_final] = ACTIONS(996), + [anon_sym_sealed] = ACTIONS(996), + [anon_sym_implicit] = ACTIONS(996), + [anon_sym_lazy] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [346] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(551), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1000), + [anon_sym_package] = ACTIONS(1002), + [anon_sym_import] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_class] = ACTIONS(1002), + [anon_sym_trait] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_val] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_var] = ACTIONS(1002), + [anon_sym_type] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(1002), + [anon_sym_final] = ACTIONS(1002), + [anon_sym_sealed] = ACTIONS(1002), + [anon_sym_implicit] = ACTIONS(1002), + [anon_sym_lazy] = ACTIONS(1002), + [anon_sym_override] = ACTIONS(1002), + [anon_sym_private] = ACTIONS(1002), + [anon_sym_protected] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(972), - [anon_sym_package] = ACTIONS(974), - [anon_sym_import] = ACTIONS(974), - [anon_sym_case] = ACTIONS(974), - [anon_sym_object] = ACTIONS(974), - [anon_sym_class] = ACTIONS(974), - [anon_sym_trait] = ACTIONS(974), - [anon_sym_val] = ACTIONS(974), - [anon_sym_var] = ACTIONS(974), - [anon_sym_type] = ACTIONS(974), - [anon_sym_def] = ACTIONS(974), - [anon_sym_abstract] = ACTIONS(974), - [anon_sym_final] = ACTIONS(974), - [anon_sym_sealed] = ACTIONS(974), - [anon_sym_implicit] = ACTIONS(974), - [anon_sym_lazy] = ACTIONS(974), - [anon_sym_override] = ACTIONS(974), - [anon_sym_private] = ACTIONS(974), - [anon_sym_protected] = ACTIONS(974), - [anon_sym_with] = ACTIONS(617), - [sym_identifier] = ACTIONS(619), - [sym_operator_identifier] = ACTIONS(621), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(1006), + [sym_comment] = ACTIONS(34), }, [348] = { - [sym_identifier] = ACTIONS(976), + [sym__type] = STATE(582), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [349] = { - [sym__type] = STATE(553), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_block] = STATE(164), + [sym__expression] = STATE(583), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_case] = ACTIONS(793), - [anon_sym_object] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_trait] = ACTIONS(793), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_type] = ACTIONS(793), - [anon_sym_def] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_implicit] = ACTIONS(793), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_override] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(793), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(585), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [351] = { - [sym__type] = STATE(554), - [sym_compound_type] = STATE(182), - [sym_infix_type] = STATE(182), - [sym_stable_type_identifier] = STATE(183), - [sym_stable_identifier] = STATE(184), - [sym_generic_type] = STATE(182), - [sym_function_type] = STATE(182), - [sym_parameter_types] = STATE(185), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(314), + [sym_case_block] = STATE(587), + [anon_sym_LBRACE] = ACTIONS(1010), [sym_comment] = ACTIONS(34), }, [352] = { - [sym__type] = STATE(555), - [sym_compound_type] = STATE(182), - [sym_infix_type] = STATE(182), - [sym_stable_type_identifier] = STATE(183), - [sym_stable_identifier] = STATE(184), - [sym_generic_type] = STATE(182), - [sym_function_type] = STATE(182), - [sym_parameter_types] = STATE(185), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(314), + [sym_block] = STATE(164), + [sym__expression] = STATE(588), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(797), - [anon_sym_package] = ACTIONS(799), - [anon_sym_import] = ACTIONS(799), - [anon_sym_case] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_class] = ACTIONS(799), - [anon_sym_trait] = ACTIONS(799), - [anon_sym_val] = ACTIONS(799), - [anon_sym_var] = ACTIONS(799), - [anon_sym_type] = ACTIONS(799), - [anon_sym_def] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(799), - [anon_sym_final] = ACTIONS(799), - [anon_sym_sealed] = ACTIONS(799), - [anon_sym_implicit] = ACTIONS(799), - [anon_sym_lazy] = ACTIONS(799), - [anon_sym_override] = ACTIONS(799), - [anon_sym_private] = ACTIONS(799), - [anon_sym_protected] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(799), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_package] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_object] = ACTIONS(1014), + [anon_sym_class] = ACTIONS(1014), + [anon_sym_trait] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_val] = ACTIONS(1014), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_var] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_abstract] = ACTIONS(1014), + [anon_sym_final] = ACTIONS(1014), + [anon_sym_sealed] = ACTIONS(1014), + [anon_sym_implicit] = ACTIONS(1014), + [anon_sym_lazy] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [354] = { - [sym__type] = STATE(556), - [sym_compound_type] = STATE(182), - [sym_infix_type] = STATE(182), - [sym_stable_type_identifier] = STATE(183), - [sym_stable_identifier] = STATE(184), - [sym_generic_type] = STATE(182), - [sym_function_type] = STATE(182), - [sym_parameter_types] = STATE(185), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(314), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(589), + [sym_case_block] = STATE(589), + [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_package] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_object] = ACTIONS(1020), + [anon_sym_class] = ACTIONS(1020), + [anon_sym_trait] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_val] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_var] = ACTIONS(1020), + [anon_sym_type] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_abstract] = ACTIONS(1020), + [anon_sym_final] = ACTIONS(1020), + [anon_sym_sealed] = ACTIONS(1020), + [anon_sym_implicit] = ACTIONS(1020), + [anon_sym_lazy] = ACTIONS(1020), + [anon_sym_override] = ACTIONS(1020), + [anon_sym_private] = ACTIONS(1020), + [anon_sym_protected] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(978), - [anon_sym_package] = ACTIONS(980), - [anon_sym_import] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_object] = ACTIONS(980), - [anon_sym_class] = ACTIONS(980), - [anon_sym_trait] = ACTIONS(980), - [anon_sym_val] = ACTIONS(980), - [anon_sym_var] = ACTIONS(980), - [anon_sym_type] = ACTIONS(980), - [anon_sym_def] = ACTIONS(980), - [anon_sym_abstract] = ACTIONS(980), - [anon_sym_final] = ACTIONS(980), - [anon_sym_sealed] = ACTIONS(980), - [anon_sym_implicit] = ACTIONS(980), - [anon_sym_lazy] = ACTIONS(980), - [anon_sym_override] = ACTIONS(980), - [anon_sym_private] = ACTIONS(980), - [anon_sym_protected] = ACTIONS(980), - [anon_sym_with] = ACTIONS(617), - [sym_identifier] = ACTIONS(619), - [sym_operator_identifier] = ACTIONS(621), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_EQ_GT] = ACTIONS(1026), + [anon_sym_COLON] = ACTIONS(1026), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_PIPE] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [sym_comment] = ACTIONS(34), }, [356] = { - [aux_sym_string_repeat1] = STATE(558), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(982), + [aux_sym_case_class_pattern_repeat1] = STATE(314), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_RPAREN] = ACTIONS(1030), [sym_comment] = ACTIONS(34), }, [357] = { - [aux_sym_string_repeat2] = STATE(559), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(982), + [sym__type] = STATE(591), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), [sym_comment] = ACTIONS(34), }, [358] = { - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LF] = ACTIONS(984), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1032), + [anon_sym_package] = ACTIONS(1034), + [anon_sym_import] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(1034), + [anon_sym_object] = ACTIONS(1034), + [anon_sym_class] = ACTIONS(1034), + [anon_sym_trait] = ACTIONS(1034), + [anon_sym_val] = ACTIONS(1034), + [anon_sym_var] = ACTIONS(1034), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_abstract] = ACTIONS(1034), + [anon_sym_final] = ACTIONS(1034), + [anon_sym_sealed] = ACTIONS(1034), + [anon_sym_implicit] = ACTIONS(1034), + [anon_sym_lazy] = ACTIONS(1034), + [anon_sym_override] = ACTIONS(1034), + [anon_sym_private] = ACTIONS(1034), + [anon_sym_protected] = ACTIONS(1034), + [anon_sym_with] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [sym_operator_identifier] = ACTIONS(655), + [sym_comment] = ACTIONS(464), }, [359] = { - [anon_sym_DOT] = ACTIONS(986), + [sym_identifier] = ACTIONS(1036), [sym_comment] = ACTIONS(34), }, [360] = { - [anon_sym_DOT] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(990), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(593), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [361] = { - [anon_sym_DOT] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_EQ] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_match] = ACTIONS(868), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_LF] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_with] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [362] = { - [aux_sym_block_repeat1] = STATE(564), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_LF] = ACTIONS(994), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(594), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), + [sym_comment] = ACTIONS(34), }, [363] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(564), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_LF] = ACTIONS(994), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(595), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), + [sym_comment] = ACTIONS(34), }, [364] = { - [sym_identifier] = ACTIONS(996), - [sym_comment] = ACTIONS(34), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [365] = { - [sym_identifier] = ACTIONS(998), + [sym__type] = STATE(596), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), [sym_comment] = ACTIONS(34), }, [366] = { - [sym_template_body] = STATE(568), - [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), [sym_comment] = ACTIONS(34), }, [367] = { - [sym_type_parameters] = STATE(572), - [sym_template_body] = STATE(573), - [sym_extends_clause] = STATE(574), - [sym_class_parameters] = STATE(575), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_extends] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_LF] = ACTIONS(1004), - [sym_comment] = ACTIONS(432), + [aux_sym_case_class_pattern_repeat1] = STATE(314), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_RPAREN] = ACTIONS(1042), + [sym_comment] = ACTIONS(34), }, [368] = { - [sym_type_parameters] = STATE(576), - [sym_template_body] = STATE(577), - [sym_extends_clause] = STATE(578), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_extends] = ACTIONS(108), + [sym_block] = STATE(164), + [sym__expression] = STATE(598), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [369] = { - [aux_sym_val_declaration_repeat1] = STATE(581), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1044), + [anon_sym_package] = ACTIONS(1046), + [anon_sym_import] = ACTIONS(1046), + [anon_sym_case] = ACTIONS(1046), + [anon_sym_object] = ACTIONS(1046), + [anon_sym_class] = ACTIONS(1046), + [anon_sym_trait] = ACTIONS(1046), + [anon_sym_val] = ACTIONS(1046), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_type] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1046), + [anon_sym_abstract] = ACTIONS(1046), + [anon_sym_final] = ACTIONS(1046), + [anon_sym_sealed] = ACTIONS(1046), + [anon_sym_implicit] = ACTIONS(1046), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_override] = ACTIONS(1046), + [anon_sym_private] = ACTIONS(1046), + [anon_sym_protected] = ACTIONS(1046), + [anon_sym_with] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [sym_operator_identifier] = ACTIONS(655), + [sym_comment] = ACTIONS(464), }, [370] = { - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(136), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(34), }, [371] = { - [aux_sym_val_declaration_repeat1] = STATE(585), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(1018), - [anon_sym_EQ] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), + [sym__type] = STATE(600), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [372] = { - [anon_sym_COLON] = ACTIONS(1022), - [anon_sym_EQ] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(136), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(847), + [anon_sym_package] = ACTIONS(849), + [anon_sym_import] = ACTIONS(849), + [anon_sym_case] = ACTIONS(849), + [anon_sym_object] = ACTIONS(849), + [anon_sym_class] = ACTIONS(849), + [anon_sym_trait] = ACTIONS(849), + [anon_sym_val] = ACTIONS(849), + [anon_sym_var] = ACTIONS(849), + [anon_sym_type] = ACTIONS(849), + [anon_sym_def] = ACTIONS(849), + [anon_sym_abstract] = ACTIONS(849), + [anon_sym_final] = ACTIONS(849), + [anon_sym_sealed] = ACTIONS(849), + [anon_sym_implicit] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(849), + [anon_sym_override] = ACTIONS(849), + [anon_sym_private] = ACTIONS(849), + [anon_sym_protected] = ACTIONS(849), + [anon_sym_with] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(849), + [sym_comment] = ACTIONS(464), }, [373] = { - [sym_type_parameters] = STATE(588), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_EQ] = ACTIONS(1024), + [sym__type] = STATE(601), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(34), }, [374] = { - [sym_type_parameters] = STATE(593), - [sym_parameters] = STATE(594), - [sym_block] = STATE(595), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1030), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_LF] = ACTIONS(1028), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(602), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), + [sym_comment] = ACTIONS(34), }, [375] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(597), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(853), + [anon_sym_package] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_case] = ACTIONS(855), + [anon_sym_object] = ACTIONS(855), + [anon_sym_class] = ACTIONS(855), + [anon_sym_trait] = ACTIONS(855), + [anon_sym_val] = ACTIONS(855), + [anon_sym_var] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_abstract] = ACTIONS(855), + [anon_sym_final] = ACTIONS(855), + [anon_sym_sealed] = ACTIONS(855), + [anon_sym_implicit] = ACTIONS(855), + [anon_sym_lazy] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(855), + [sym_comment] = ACTIONS(464), }, [376] = { - [sym_block] = STATE(607), - [sym__expression] = STATE(608), - [sym_if_expression] = STATE(607), - [sym_match_expression] = STATE(607), - [sym_assignment_expression] = STATE(607), - [sym_generic_function] = STATE(607), - [sym_call_expression] = STATE(607), - [sym_field_expression] = STATE(607), - [sym_instance_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_tuple_expression] = STATE(607), - [sym_parenthesized_expression] = STATE(607), - [sym_string_transform_expression] = STATE(607), - [sym_string] = STATE(607), - [sym__simple_string] = ACTIONS(1038), - [sym__string_start] = ACTIONS(1040), - [sym__multiline_string_start] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1054), - [sym_number] = ACTIONS(1056), + [sym__type] = STATE(603), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(34), }, [377] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(922), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_LF] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1050), + [anon_sym_package] = ACTIONS(1052), + [anon_sym_import] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_object] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(1052), + [anon_sym_trait] = ACTIONS(1052), + [anon_sym_val] = ACTIONS(1052), + [anon_sym_var] = ACTIONS(1052), + [anon_sym_type] = ACTIONS(1052), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_abstract] = ACTIONS(1052), + [anon_sym_final] = ACTIONS(1052), + [anon_sym_sealed] = ACTIONS(1052), + [anon_sym_implicit] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1052), + [anon_sym_override] = ACTIONS(1052), + [anon_sym_private] = ACTIONS(1052), + [anon_sym_protected] = ACTIONS(1052), + [anon_sym_with] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [sym_operator_identifier] = ACTIONS(655), + [sym_comment] = ACTIONS(464), }, [378] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(928), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(605), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(1054), + [sym_comment] = ACTIONS(34), }, [379] = { - [anon_sym_DOT] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_match] = ACTIONS(934), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_LF] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(606), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(1054), + [sym_comment] = ACTIONS(34), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1058), - [anon_sym_package] = ACTIONS(1058), - [anon_sym_import] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_case] = ACTIONS(1058), - [anon_sym_object] = ACTIONS(1058), - [anon_sym_class] = ACTIONS(1058), - [anon_sym_trait] = ACTIONS(1058), - [anon_sym_val] = ACTIONS(1058), - [anon_sym_var] = ACTIONS(1058), - [anon_sym_type] = ACTIONS(1058), - [anon_sym_def] = ACTIONS(1058), - [anon_sym_abstract] = ACTIONS(1058), - [anon_sym_final] = ACTIONS(1058), - [anon_sym_sealed] = ACTIONS(1058), - [anon_sym_implicit] = ACTIONS(1058), - [anon_sym_lazy] = ACTIONS(1058), - [anon_sym_override] = ACTIONS(1058), - [anon_sym_private] = ACTIONS(1058), - [anon_sym_protected] = ACTIONS(1058), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_LF] = ACTIONS(1056), + [sym_comment] = ACTIONS(464), }, [381] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), + [anon_sym_DOT] = ACTIONS(1058), [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LF] = ACTIONS(1060), + [sym_comment] = ACTIONS(464), }, [382] = { - [aux_sym_block_repeat1] = STATE(613), + [anon_sym_DOT] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_match] = ACTIONS(924), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LF] = ACTIONS(924), + [sym_comment] = ACTIONS(464), + }, + [383] = { + [aux_sym_block_repeat1] = STATE(610), [anon_sym_RBRACE] = ACTIONS(1062), [anon_sym_SEMI] = ACTIONS(1064), [anon_sym_LF] = ACTIONS(1064), - [sym_comment] = ACTIONS(432), - }, - [383] = { - [anon_sym_class] = ACTIONS(1066), - [sym_comment] = ACTIONS(34), + [sym_comment] = ACTIONS(464), }, [384] = { - [sym_identifier] = ACTIONS(1068), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(610), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_LF] = ACTIONS(1064), + [sym_comment] = ACTIONS(464), }, [385] = { - [sym_identifier] = ACTIONS(1070), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_case] = ACTIONS(942), [sym_comment] = ACTIONS(34), }, [386] = { - [sym__type] = STATE(617), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_identifier] = ACTIONS(1068), [sym_comment] = ACTIONS(34), }, [387] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(618), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_identifier] = ACTIONS(1070), [sym_comment] = ACTIONS(34), }, [388] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(620), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym_template_body] = STATE(615), + [anon_sym_LBRACE] = ACTIONS(1072), [sym_comment] = ACTIONS(34), }, [389] = { - [sym_case_block] = STATE(622), + [sym_type_parameters] = STATE(619), + [sym_template_body] = STATE(620), + [sym_extends_clause] = STATE(621), + [sym_class_parameters] = STATE(622), [anon_sym_LBRACE] = ACTIONS(1074), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_extends] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_LF] = ACTIONS(1076), + [sym_comment] = ACTIONS(464), }, [390] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(623), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_type_parameters] = STATE(623), + [sym_template_body] = STATE(624), + [sym_extends_clause] = STATE(625), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_extends] = ACTIONS(112), [sym_comment] = ACTIONS(34), }, [391] = { - [anon_sym_DOT] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(946), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_match] = ACTIONS(946), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_LF] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [aux_sym_val_declaration_repeat1] = STATE(628), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1084), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [392] = { - [anon_sym_DOT] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_EQ] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_LF] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(1088), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [393] = { - [sym_identifier] = ACTIONS(1076), + [aux_sym_val_declaration_repeat1] = STATE(632), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [394] = { - [sym__type] = STATE(625), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [anon_sym_COLON] = ACTIONS(1094), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_case] = ACTIONS(793), - [anon_sym_object] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_trait] = ACTIONS(793), - [anon_sym_val] = ACTIONS(793), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_type] = ACTIONS(793), - [anon_sym_def] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_implicit] = ACTIONS(793), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_override] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [sym_type_parameters] = STATE(635), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(1096), + [sym_comment] = ACTIONS(34), }, [396] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(626), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), - [sym_comment] = ACTIONS(34), + [sym_type_parameters] = STATE(640), + [sym_parameters] = STATE(641), + [sym_block] = STATE(642), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_LF] = ACTIONS(1100), + [sym_comment] = ACTIONS(464), }, [397] = { - [sym__type] = STATE(627), - [sym_compound_type] = STATE(213), - [sym_infix_type] = STATE(213), - [sym_stable_type_identifier] = STATE(214), - [sym_stable_identifier] = STATE(215), - [sym_generic_type] = STATE(213), - [sym_function_type] = STATE(213), - [sym_parameter_types] = STATE(216), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(362), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(644), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1108), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [398] = { - [sym__type] = STATE(628), - [sym_compound_type] = STATE(213), - [sym_infix_type] = STATE(213), - [sym_stable_type_identifier] = STATE(214), - [sym_stable_identifier] = STATE(215), - [sym_generic_type] = STATE(213), - [sym_function_type] = STATE(213), - [sym_parameter_types] = STATE(216), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(362), + [sym_block] = STATE(654), + [sym__expression] = STATE(655), + [sym_if_expression] = STATE(654), + [sym_match_expression] = STATE(654), + [sym_case_block] = STATE(654), + [sym_assignment_expression] = STATE(654), + [sym_generic_function] = STATE(654), + [sym_call_expression] = STATE(654), + [sym_field_expression] = STATE(654), + [sym_instance_expression] = STATE(654), + [sym_infix_expression] = STATE(654), + [sym_prefix_expression] = STATE(654), + [sym_tuple_expression] = STATE(654), + [sym_parenthesized_expression] = STATE(654), + [sym_string_transform_expression] = STATE(654), + [sym_string] = STATE(654), + [sym__simple_string] = ACTIONS(1110), + [sym__string_start] = ACTIONS(1112), + [sym__multiline_string_start] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [sym_number] = ACTIONS(1128), [sym_comment] = ACTIONS(34), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1078), - [anon_sym_package] = ACTIONS(1078), - [anon_sym_import] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_case] = ACTIONS(1078), - [anon_sym_object] = ACTIONS(1078), - [anon_sym_class] = ACTIONS(1078), - [anon_sym_trait] = ACTIONS(1078), - [anon_sym_val] = ACTIONS(1078), - [anon_sym_var] = ACTIONS(1078), - [anon_sym_type] = ACTIONS(1078), - [anon_sym_def] = ACTIONS(1078), - [anon_sym_abstract] = ACTIONS(1078), - [anon_sym_final] = ACTIONS(1078), - [anon_sym_sealed] = ACTIONS(1078), - [anon_sym_implicit] = ACTIONS(1078), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_override] = ACTIONS(1078), - [anon_sym_private] = ACTIONS(1078), - [anon_sym_protected] = ACTIONS(1078), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(992), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_LF] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(797), - [anon_sym_package] = ACTIONS(799), - [anon_sym_import] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_case] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_class] = ACTIONS(799), - [anon_sym_trait] = ACTIONS(799), - [anon_sym_val] = ACTIONS(799), - [anon_sym_EQ] = ACTIONS(799), - [anon_sym_var] = ACTIONS(799), - [anon_sym_type] = ACTIONS(799), - [anon_sym_def] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(799), - [anon_sym_final] = ACTIONS(799), - [anon_sym_sealed] = ACTIONS(799), - [anon_sym_implicit] = ACTIONS(799), - [anon_sym_lazy] = ACTIONS(799), - [anon_sym_override] = ACTIONS(799), - [anon_sym_private] = ACTIONS(799), - [anon_sym_protected] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(998), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_LF] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [401] = { - [sym__type] = STATE(629), - [sym_compound_type] = STATE(213), - [sym_infix_type] = STATE(213), - [sym_stable_type_identifier] = STATE(214), - [sym_stable_identifier] = STATE(215), - [sym_generic_type] = STATE(213), - [sym_function_type] = STATE(213), - [sym_parameter_types] = STATE(216), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(362), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_LF] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [402] = { - [sym__type] = STATE(630), - [sym_compound_type] = STATE(461), - [sym_infix_type] = STATE(461), - [sym_stable_type_identifier] = STATE(462), - [sym_stable_identifier] = STATE(463), - [sym_generic_type] = STATE(461), - [sym_function_type] = STATE(461), - [sym_parameter_types] = STATE(464), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(809), + [ts_builtin_sym_end] = ACTIONS(1130), + [anon_sym_package] = ACTIONS(1130), + [anon_sym_import] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_object] = ACTIONS(1130), + [anon_sym_class] = ACTIONS(1130), + [anon_sym_trait] = ACTIONS(1130), + [anon_sym_val] = ACTIONS(1130), + [anon_sym_var] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_def] = ACTIONS(1130), + [anon_sym_abstract] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1130), + [anon_sym_sealed] = ACTIONS(1130), + [anon_sym_implicit] = ACTIONS(1130), + [anon_sym_lazy] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_protected] = ACTIONS(1130), [sym_comment] = ACTIONS(34), }, [403] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(631), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [404] = { - [sym_parameter] = STATE(632), - [sym_identifier] = ACTIONS(366), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_LF] = ACTIONS(1136), + [sym_comment] = ACTIONS(464), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1080), - [anon_sym_package] = ACTIONS(1080), - [anon_sym_import] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_object] = ACTIONS(1080), - [anon_sym_class] = ACTIONS(1080), - [anon_sym_trait] = ACTIONS(1080), - [anon_sym_val] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_var] = ACTIONS(1080), - [anon_sym_type] = ACTIONS(1080), - [anon_sym_def] = ACTIONS(1080), - [anon_sym_abstract] = ACTIONS(1080), - [anon_sym_final] = ACTIONS(1080), - [anon_sym_sealed] = ACTIONS(1080), - [anon_sym_implicit] = ACTIONS(1080), - [anon_sym_lazy] = ACTIONS(1080), - [anon_sym_override] = ACTIONS(1080), - [anon_sym_private] = ACTIONS(1080), - [anon_sym_protected] = ACTIONS(1080), + [anon_sym_class] = ACTIONS(1138), [sym_comment] = ACTIONS(34), }, [406] = { - [aux_sym_parameters_repeat1] = STATE(634), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(1082), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(663), + [sym_alternative_pattern] = STATE(663), + [sym_typed_pattern] = STATE(663), + [sym_tuple_pattern] = STATE(663), + [sym_parenthesized_pattern] = STATE(663), + [sym_wildcard] = STATE(663), + [sym_string] = STATE(663), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(1140), + [sym_number] = ACTIONS(1142), [sym_comment] = ACTIONS(34), }, [407] = { - [sym_block] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(1084), - [anon_sym_package] = ACTIONS(1086), - [anon_sym_import] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_case] = ACTIONS(1086), - [anon_sym_object] = ACTIONS(1086), - [anon_sym_class] = ACTIONS(1086), - [anon_sym_trait] = ACTIONS(1086), - [anon_sym_val] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1088), - [anon_sym_var] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_def] = ACTIONS(1086), - [anon_sym_abstract] = ACTIONS(1086), - [anon_sym_final] = ACTIONS(1086), - [anon_sym_sealed] = ACTIONS(1086), - [anon_sym_implicit] = ACTIONS(1086), - [anon_sym_lazy] = ACTIONS(1086), - [anon_sym_override] = ACTIONS(1086), - [anon_sym_private] = ACTIONS(1086), - [anon_sym_protected] = ACTIONS(1086), - [anon_sym_with] = ACTIONS(687), - [sym_identifier] = ACTIONS(689), - [sym_operator_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(432), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(665), + [sym_alternative_pattern] = STATE(665), + [sym_typed_pattern] = STATE(665), + [sym_tuple_pattern] = STATE(665), + [sym_parenthesized_pattern] = STATE(665), + [sym_wildcard] = STATE(665), + [sym_string] = STATE(665), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(1144), + [sym_number] = ACTIONS(1146), + [sym_comment] = ACTIONS(34), }, [408] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1078), - [anon_sym_package] = ACTIONS(1090), - [anon_sym_import] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(1090), - [anon_sym_object] = ACTIONS(1090), - [anon_sym_class] = ACTIONS(1090), - [anon_sym_trait] = ACTIONS(1090), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(1090), - [anon_sym_type] = ACTIONS(1090), - [anon_sym_def] = ACTIONS(1090), - [anon_sym_abstract] = ACTIONS(1090), - [anon_sym_final] = ACTIONS(1090), - [anon_sym_sealed] = ACTIONS(1090), - [anon_sym_implicit] = ACTIONS(1090), - [anon_sym_lazy] = ACTIONS(1090), - [anon_sym_override] = ACTIONS(1090), - [anon_sym_private] = ACTIONS(1090), - [anon_sym_protected] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(1148), + [sym_comment] = ACTIONS(34), }, [409] = { - [sym__type] = STATE(637), - [sym_compound_type] = STATE(213), - [sym_infix_type] = STATE(213), - [sym_stable_type_identifier] = STATE(214), - [sym_stable_identifier] = STATE(215), - [sym_generic_type] = STATE(213), - [sym_function_type] = STATE(213), - [sym_parameter_types] = STATE(216), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(362), + [sym_identifier] = ACTIONS(1150), [sym_comment] = ACTIONS(34), }, [410] = { - [sym_template_body] = STATE(416), - [sym_extends_clause] = STATE(417), - [sym_class_parameters] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(719), - [anon_sym_package] = ACTIONS(719), - [anon_sym_import] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_case] = ACTIONS(719), - [anon_sym_object] = ACTIONS(719), - [anon_sym_class] = ACTIONS(719), - [anon_sym_trait] = ACTIONS(719), - [anon_sym_val] = ACTIONS(719), - [anon_sym_var] = ACTIONS(719), - [anon_sym_type] = ACTIONS(719), - [anon_sym_def] = ACTIONS(719), - [anon_sym_abstract] = ACTIONS(719), - [anon_sym_final] = ACTIONS(719), - [anon_sym_sealed] = ACTIONS(719), - [anon_sym_implicit] = ACTIONS(719), - [anon_sym_lazy] = ACTIONS(719), - [anon_sym_override] = ACTIONS(719), - [anon_sym_private] = ACTIONS(719), - [anon_sym_protected] = ACTIONS(719), - [anon_sym_extends] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(106), + [sym_identifier] = ACTIONS(1152), [sym_comment] = ACTIONS(34), }, [411] = { - [sym_block] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(1084), - [anon_sym_package] = ACTIONS(1084), - [anon_sym_import] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), - [anon_sym_class] = ACTIONS(1084), - [anon_sym_trait] = ACTIONS(1084), - [anon_sym_val] = ACTIONS(1084), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_EQ] = ACTIONS(1094), - [anon_sym_var] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_def] = ACTIONS(1084), - [anon_sym_abstract] = ACTIONS(1084), - [anon_sym_final] = ACTIONS(1084), - [anon_sym_sealed] = ACTIONS(1084), - [anon_sym_implicit] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), + [sym__type] = STATE(669), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [412] = { - [sym_renamed_identifier] = STATE(641), - [sym_identifier] = ACTIONS(1096), + [sym_block] = STATE(213), + [sym__expression] = STATE(670), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [anon_sym_package] = ACTIONS(1098), - [anon_sym_import] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_case] = ACTIONS(1098), - [anon_sym_object] = ACTIONS(1098), - [anon_sym_class] = ACTIONS(1098), - [anon_sym_trait] = ACTIONS(1098), - [anon_sym_val] = ACTIONS(1098), - [anon_sym_var] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_def] = ACTIONS(1098), - [anon_sym_abstract] = ACTIONS(1098), - [anon_sym_final] = ACTIONS(1098), - [anon_sym_sealed] = ACTIONS(1098), - [anon_sym_implicit] = ACTIONS(1098), - [anon_sym_lazy] = ACTIONS(1098), - [anon_sym_override] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), + [sym_block] = STATE(340), + [sym__expression] = STATE(672), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [414] = { - [sym_wildcard] = STATE(642), - [anon_sym__] = ACTIONS(56), - [sym_identifier] = ACTIONS(1100), + [sym_case_block] = STATE(674), + [anon_sym_LBRACE] = ACTIONS(1156), [sym_comment] = ACTIONS(34), }, [415] = { - [aux_sym_import_selectors_repeat1] = STATE(644), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(1102), + [sym_block] = STATE(213), + [sym__expression] = STATE(675), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_package] = ACTIONS(1104), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_object] = ACTIONS(1104), - [anon_sym_class] = ACTIONS(1104), - [anon_sym_trait] = ACTIONS(1104), - [anon_sym_val] = ACTIONS(1104), - [anon_sym_var] = ACTIONS(1104), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1104), - [anon_sym_abstract] = ACTIONS(1104), - [anon_sym_final] = ACTIONS(1104), - [anon_sym_sealed] = ACTIONS(1104), - [anon_sym_implicit] = ACTIONS(1104), - [anon_sym_lazy] = ACTIONS(1104), - [anon_sym_override] = ACTIONS(1104), - [anon_sym_private] = ACTIONS(1104), - [anon_sym_protected] = ACTIONS(1104), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_LF] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [417] = { - [sym_template_body] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_package] = ACTIONS(1104), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_object] = ACTIONS(1104), - [anon_sym_class] = ACTIONS(1104), - [anon_sym_trait] = ACTIONS(1104), - [anon_sym_val] = ACTIONS(1104), - [anon_sym_var] = ACTIONS(1104), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1104), - [anon_sym_abstract] = ACTIONS(1104), - [anon_sym_final] = ACTIONS(1104), - [anon_sym_sealed] = ACTIONS(1104), - [anon_sym_implicit] = ACTIONS(1104), - [anon_sym_lazy] = ACTIONS(1104), - [anon_sym_override] = ACTIONS(1104), - [anon_sym_private] = ACTIONS(1104), - [anon_sym_protected] = ACTIONS(1104), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(676), + [sym_case_block] = STATE(676), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [418] = { - [sym_type_parameters] = STATE(646), - [sym_template_body] = STATE(95), - [sym_extends_clause] = STATE(96), - [sym_class_parameters] = STATE(647), - [anon_sym_package] = ACTIONS(210), - [anon_sym_import] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(210), - [anon_sym_case] = ACTIONS(210), - [anon_sym_object] = ACTIONS(210), - [anon_sym_class] = ACTIONS(210), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_val] = ACTIONS(210), - [anon_sym_var] = ACTIONS(210), - [anon_sym_type] = ACTIONS(210), - [anon_sym_def] = ACTIONS(210), - [anon_sym_abstract] = ACTIONS(210), - [anon_sym_final] = ACTIONS(210), - [anon_sym_sealed] = ACTIONS(210), - [anon_sym_implicit] = ACTIONS(210), - [anon_sym_lazy] = ACTIONS(210), - [anon_sym_override] = ACTIONS(210), - [anon_sym_private] = ACTIONS(210), - [anon_sym_protected] = ACTIONS(210), - [anon_sym_extends] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(106), + [sym_identifier] = ACTIONS(1160), [sym_comment] = ACTIONS(34), }, [419] = { - [sym__type] = STATE(649), - [sym_compound_type] = STATE(650), - [sym_infix_type] = STATE(650), - [sym_stable_type_identifier] = STATE(651), - [sym_stable_identifier] = STATE(652), - [sym_generic_type] = STATE(650), - [sym_function_type] = STATE(650), - [sym_parameter_types] = STATE(653), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1106), + [sym__type] = STATE(678), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [420] = { - [sym_template_body] = STATE(95), - [sym_extends_clause] = STATE(96), - [sym_class_parameters] = STATE(647), - [anon_sym_package] = ACTIONS(210), - [anon_sym_import] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(210), - [anon_sym_case] = ACTIONS(210), - [anon_sym_object] = ACTIONS(210), - [anon_sym_class] = ACTIONS(210), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_val] = ACTIONS(210), - [anon_sym_var] = ACTIONS(210), - [anon_sym_type] = ACTIONS(210), - [anon_sym_def] = ACTIONS(210), - [anon_sym_abstract] = ACTIONS(210), - [anon_sym_final] = ACTIONS(210), - [anon_sym_sealed] = ACTIONS(210), - [anon_sym_implicit] = ACTIONS(210), - [anon_sym_lazy] = ACTIONS(210), - [anon_sym_override] = ACTIONS(210), - [anon_sym_private] = ACTIONS(210), - [anon_sym_protected] = ACTIONS(210), - [anon_sym_extends] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(106), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(847), + [anon_sym_package] = ACTIONS(849), + [anon_sym_import] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_case] = ACTIONS(849), + [anon_sym_object] = ACTIONS(849), + [anon_sym_class] = ACTIONS(849), + [anon_sym_trait] = ACTIONS(849), + [anon_sym_val] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_var] = ACTIONS(849), + [anon_sym_type] = ACTIONS(849), + [anon_sym_def] = ACTIONS(849), + [anon_sym_abstract] = ACTIONS(849), + [anon_sym_final] = ACTIONS(849), + [anon_sym_sealed] = ACTIONS(849), + [anon_sym_implicit] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(849), + [anon_sym_override] = ACTIONS(849), + [anon_sym_private] = ACTIONS(849), + [anon_sym_protected] = ACTIONS(849), + [anon_sym_with] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [421] = { - [sym_template_body] = STATE(95), - [sym_extends_clause] = STATE(96), - [anon_sym_package] = ACTIONS(210), - [anon_sym_import] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(210), - [anon_sym_case] = ACTIONS(210), - [anon_sym_object] = ACTIONS(210), - [anon_sym_class] = ACTIONS(210), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_val] = ACTIONS(210), - [anon_sym_var] = ACTIONS(210), - [anon_sym_type] = ACTIONS(210), - [anon_sym_def] = ACTIONS(210), - [anon_sym_abstract] = ACTIONS(210), - [anon_sym_final] = ACTIONS(210), - [anon_sym_sealed] = ACTIONS(210), - [anon_sym_implicit] = ACTIONS(210), - [anon_sym_lazy] = ACTIONS(210), - [anon_sym_override] = ACTIONS(210), - [anon_sym_private] = ACTIONS(210), - [anon_sym_protected] = ACTIONS(210), - [anon_sym_extends] = ACTIONS(723), + [sym_block] = STATE(164), + [sym__expression] = STATE(679), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [422] = { - [sym__type] = STATE(655), - [sym_compound_type] = STATE(656), - [sym_infix_type] = STATE(656), - [sym_stable_type_identifier] = STATE(657), - [sym_stable_identifier] = STATE(658), - [sym_generic_type] = STATE(656), - [sym_function_type] = STATE(656), - [sym_parameter_types] = STATE(659), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1108), + [sym__type] = STATE(680), + [sym_compound_type] = STATE(219), + [sym_infix_type] = STATE(219), + [sym_stable_type_identifier] = STATE(220), + [sym_stable_identifier] = STATE(221), + [sym_generic_type] = STATE(219), + [sym_function_type] = STATE(219), + [sym_parameter_types] = STATE(222), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(374), [sym_comment] = ACTIONS(34), }, [423] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(670), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), + [sym__type] = STATE(681), + [sym_compound_type] = STATE(219), + [sym_infix_type] = STATE(219), + [sym_stable_type_identifier] = STATE(220), + [sym_stable_identifier] = STATE(221), + [sym_generic_type] = STATE(219), + [sym_function_type] = STATE(219), + [sym_parameter_types] = STATE(222), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(374), [sym_comment] = ACTIONS(34), }, [424] = { - [aux_sym_val_declaration_repeat1] = STATE(166), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(1130), + [ts_builtin_sym_end] = ACTIONS(1162), + [anon_sym_package] = ACTIONS(1162), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_object] = ACTIONS(1162), + [anon_sym_class] = ACTIONS(1162), + [anon_sym_trait] = ACTIONS(1162), + [anon_sym_val] = ACTIONS(1162), + [anon_sym_var] = ACTIONS(1162), + [anon_sym_type] = ACTIONS(1162), + [anon_sym_def] = ACTIONS(1162), + [anon_sym_abstract] = ACTIONS(1162), + [anon_sym_final] = ACTIONS(1162), + [anon_sym_sealed] = ACTIONS(1162), + [anon_sym_implicit] = ACTIONS(1162), + [anon_sym_lazy] = ACTIONS(1162), + [anon_sym_override] = ACTIONS(1162), + [anon_sym_private] = ACTIONS(1162), + [anon_sym_protected] = ACTIONS(1162), [sym_comment] = ACTIONS(34), }, [425] = { - [sym__type] = STATE(672), - [sym_compound_type] = STATE(169), - [sym_infix_type] = STATE(169), - [sym_stable_type_identifier] = STATE(170), - [sym_stable_identifier] = STATE(171), - [sym_generic_type] = STATE(169), - [sym_function_type] = STATE(169), - [sym_parameter_types] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(304), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(853), + [anon_sym_package] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_case] = ACTIONS(855), + [anon_sym_object] = ACTIONS(855), + [anon_sym_class] = ACTIONS(855), + [anon_sym_trait] = ACTIONS(855), + [anon_sym_val] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_var] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_abstract] = ACTIONS(855), + [anon_sym_final] = ACTIONS(855), + [anon_sym_sealed] = ACTIONS(855), + [anon_sym_implicit] = ACTIONS(855), + [anon_sym_lazy] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [426] = { - [sym__type] = STATE(673), - [sym_compound_type] = STATE(656), - [sym_infix_type] = STATE(656), - [sym_stable_type_identifier] = STATE(657), - [sym_stable_identifier] = STATE(658), - [sym_generic_type] = STATE(656), - [sym_function_type] = STATE(656), - [sym_parameter_types] = STATE(659), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1108), + [sym__type] = STATE(682), + [sym_compound_type] = STATE(219), + [sym_infix_type] = STATE(219), + [sym_stable_type_identifier] = STATE(220), + [sym_stable_identifier] = STATE(221), + [sym_generic_type] = STATE(219), + [sym_function_type] = STATE(219), + [sym_parameter_types] = STATE(222), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(374), [sym_comment] = ACTIONS(34), }, [427] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(674), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), + [sym__type] = STATE(683), + [sym_compound_type] = STATE(501), + [sym_infix_type] = STATE(501), + [sym_stable_type_identifier] = STATE(502), + [sym_stable_identifier] = STATE(503), + [sym_generic_type] = STATE(501), + [sym_function_type] = STATE(501), + [sym_parameter_types] = STATE(504), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(865), [sym_comment] = ACTIONS(34), }, [428] = { - [aux_sym_val_declaration_repeat1] = STATE(166), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(1132), + [sym_block] = STATE(340), + [sym__expression] = STATE(684), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [429] = { - [sym__type] = STATE(676), - [sym_compound_type] = STATE(169), - [sym_infix_type] = STATE(169), - [sym_stable_type_identifier] = STATE(170), - [sym_stable_identifier] = STATE(171), - [sym_generic_type] = STATE(169), - [sym_function_type] = STATE(169), - [sym_parameter_types] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(304), + [sym_parameter] = STATE(685), + [sym_identifier] = ACTIONS(378), [sym_comment] = ACTIONS(34), }, [430] = { - [sym__type] = STATE(678), - [sym_compound_type] = STATE(679), - [sym_infix_type] = STATE(679), - [sym_stable_type_identifier] = STATE(680), - [sym_stable_identifier] = STATE(681), - [sym_generic_type] = STATE(679), - [sym_function_type] = STATE(679), - [sym_parameter_types] = STATE(682), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1134), + [ts_builtin_sym_end] = ACTIONS(1164), + [anon_sym_package] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(1164), + [anon_sym_object] = ACTIONS(1164), + [anon_sym_class] = ACTIONS(1164), + [anon_sym_trait] = ACTIONS(1164), + [anon_sym_val] = ACTIONS(1164), + [anon_sym_COLON] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_var] = ACTIONS(1164), + [anon_sym_type] = ACTIONS(1164), + [anon_sym_def] = ACTIONS(1164), + [anon_sym_abstract] = ACTIONS(1164), + [anon_sym_final] = ACTIONS(1164), + [anon_sym_sealed] = ACTIONS(1164), + [anon_sym_implicit] = ACTIONS(1164), + [anon_sym_lazy] = ACTIONS(1164), + [anon_sym_override] = ACTIONS(1164), + [anon_sym_private] = ACTIONS(1164), + [anon_sym_protected] = ACTIONS(1164), [sym_comment] = ACTIONS(34), }, [431] = { - [anon_sym_EQ] = ACTIONS(1136), + [aux_sym_parameters_repeat1] = STATE(687), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(1166), [sym_comment] = ACTIONS(34), }, [432] = { - [sym__type] = STATE(685), - [sym_compound_type] = STATE(686), - [sym_infix_type] = STATE(686), - [sym_stable_type_identifier] = STATE(687), - [sym_stable_identifier] = STATE(688), - [sym_generic_type] = STATE(686), - [sym_function_type] = STATE(686), - [sym_parameter_types] = STATE(689), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1138), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(1168), + [anon_sym_package] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_object] = ACTIONS(1170), + [anon_sym_class] = ACTIONS(1170), + [anon_sym_trait] = ACTIONS(1170), + [anon_sym_val] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1172), + [anon_sym_var] = ACTIONS(1170), + [anon_sym_type] = ACTIONS(1170), + [anon_sym_def] = ACTIONS(1170), + [anon_sym_abstract] = ACTIONS(1170), + [anon_sym_final] = ACTIONS(1170), + [anon_sym_sealed] = ACTIONS(1170), + [anon_sym_implicit] = ACTIONS(1170), + [anon_sym_lazy] = ACTIONS(1170), + [anon_sym_override] = ACTIONS(1170), + [anon_sym_private] = ACTIONS(1170), + [anon_sym_protected] = ACTIONS(1170), + [anon_sym_with] = ACTIONS(727), + [sym_identifier] = ACTIONS(729), + [sym_operator_identifier] = ACTIONS(729), + [sym_comment] = ACTIONS(464), }, [433] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(690), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(1162), + [anon_sym_package] = ACTIONS(1174), + [anon_sym_import] = ACTIONS(1174), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_object] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1174), + [anon_sym_trait] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(1174), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(1174), + [anon_sym_type] = ACTIONS(1174), + [anon_sym_def] = ACTIONS(1174), + [anon_sym_abstract] = ACTIONS(1174), + [anon_sym_final] = ACTIONS(1174), + [anon_sym_sealed] = ACTIONS(1174), + [anon_sym_implicit] = ACTIONS(1174), + [anon_sym_lazy] = ACTIONS(1174), + [anon_sym_override] = ACTIONS(1174), + [anon_sym_private] = ACTIONS(1174), + [anon_sym_protected] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [434] = { - [sym_parameters] = STATE(693), - [sym_block] = STATE(224), - [anon_sym_package] = ACTIONS(368), - [anon_sym_import] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_case] = ACTIONS(368), - [anon_sym_object] = ACTIONS(368), - [anon_sym_class] = ACTIONS(368), - [anon_sym_trait] = ACTIONS(368), - [anon_sym_val] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1142), - [anon_sym_var] = ACTIONS(368), - [anon_sym_type] = ACTIONS(368), - [anon_sym_def] = ACTIONS(368), - [anon_sym_abstract] = ACTIONS(368), - [anon_sym_final] = ACTIONS(368), - [anon_sym_sealed] = ACTIONS(368), - [anon_sym_implicit] = ACTIONS(368), - [anon_sym_lazy] = ACTIONS(368), - [anon_sym_override] = ACTIONS(368), - [anon_sym_private] = ACTIONS(368), - [anon_sym_protected] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(158), + [sym__type] = STATE(690), + [sym_compound_type] = STATE(219), + [sym_infix_type] = STATE(219), + [sym_stable_type_identifier] = STATE(220), + [sym_stable_identifier] = STATE(221), + [sym_generic_type] = STATE(219), + [sym_function_type] = STATE(219), + [sym_parameter_types] = STATE(222), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(374), [sym_comment] = ACTIONS(34), }, [435] = { - [sym_block] = STATE(224), - [anon_sym_package] = ACTIONS(368), - [anon_sym_import] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_case] = ACTIONS(368), - [anon_sym_object] = ACTIONS(368), - [anon_sym_class] = ACTIONS(368), - [anon_sym_trait] = ACTIONS(368), - [anon_sym_val] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1142), - [anon_sym_var] = ACTIONS(368), - [anon_sym_type] = ACTIONS(368), - [anon_sym_def] = ACTIONS(368), - [anon_sym_abstract] = ACTIONS(368), - [anon_sym_final] = ACTIONS(368), - [anon_sym_sealed] = ACTIONS(368), - [anon_sym_implicit] = ACTIONS(368), - [anon_sym_lazy] = ACTIONS(368), - [anon_sym_override] = ACTIONS(368), - [anon_sym_private] = ACTIONS(368), - [anon_sym_protected] = ACTIONS(368), + [sym_template_body] = STATE(451), + [sym_extends_clause] = STATE(452), + [sym_class_parameters] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_package] = ACTIONS(765), + [anon_sym_import] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_case] = ACTIONS(765), + [anon_sym_object] = ACTIONS(765), + [anon_sym_class] = ACTIONS(765), + [anon_sym_trait] = ACTIONS(765), + [anon_sym_val] = ACTIONS(765), + [anon_sym_var] = ACTIONS(765), + [anon_sym_type] = ACTIONS(765), + [anon_sym_def] = ACTIONS(765), + [anon_sym_abstract] = ACTIONS(765), + [anon_sym_final] = ACTIONS(765), + [anon_sym_sealed] = ACTIONS(765), + [anon_sym_implicit] = ACTIONS(765), + [anon_sym_lazy] = ACTIONS(765), + [anon_sym_override] = ACTIONS(765), + [anon_sym_private] = ACTIONS(765), + [anon_sym_protected] = ACTIONS(765), + [anon_sym_extends] = ACTIONS(108), + [anon_sym_LPAREN] = ACTIONS(110), [sym_comment] = ACTIONS(34), }, [436] = { - [sym_identifier] = ACTIONS(1144), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1032), + [anon_sym_package] = ACTIONS(1034), + [anon_sym_import] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(1034), + [anon_sym_object] = ACTIONS(1034), + [anon_sym_class] = ACTIONS(1034), + [anon_sym_trait] = ACTIONS(1034), + [anon_sym_val] = ACTIONS(1034), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(1176), + [anon_sym_var] = ACTIONS(1034), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_abstract] = ACTIONS(1034), + [anon_sym_final] = ACTIONS(1034), + [anon_sym_sealed] = ACTIONS(1034), + [anon_sym_implicit] = ACTIONS(1034), + [anon_sym_lazy] = ACTIONS(1034), + [anon_sym_override] = ACTIONS(1034), + [anon_sym_private] = ACTIONS(1034), + [anon_sym_protected] = ACTIONS(1034), + [anon_sym_with] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(550), + [sym_operator_identifier] = ACTIONS(550), + [sym_comment] = ACTIONS(464), }, [437] = { - [sym_type_parameters] = STATE(695), - [sym_parameters] = STATE(693), - [sym_block] = STATE(224), - [anon_sym_package] = ACTIONS(368), - [anon_sym_import] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_case] = ACTIONS(368), - [anon_sym_object] = ACTIONS(368), - [anon_sym_class] = ACTIONS(368), - [anon_sym_trait] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_val] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1142), - [anon_sym_var] = ACTIONS(368), - [anon_sym_type] = ACTIONS(368), - [anon_sym_def] = ACTIONS(368), - [anon_sym_abstract] = ACTIONS(368), - [anon_sym_final] = ACTIONS(368), - [anon_sym_sealed] = ACTIONS(368), - [anon_sym_implicit] = ACTIONS(368), - [anon_sym_lazy] = ACTIONS(368), - [anon_sym_override] = ACTIONS(368), - [anon_sym_private] = ACTIONS(368), - [anon_sym_protected] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(1178), + [anon_sym_package] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1180), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(1180), + [anon_sym_object] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(1180), + [anon_sym_trait] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(1180), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(1180), + [anon_sym_type] = ACTIONS(1180), + [anon_sym_def] = ACTIONS(1180), + [anon_sym_abstract] = ACTIONS(1180), + [anon_sym_final] = ACTIONS(1180), + [anon_sym_sealed] = ACTIONS(1180), + [anon_sym_implicit] = ACTIONS(1180), + [anon_sym_lazy] = ACTIONS(1180), + [anon_sym_override] = ACTIONS(1180), + [anon_sym_private] = ACTIONS(1180), + [anon_sym_protected] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [438] = { - [anon_sym_COMMA] = ACTIONS(1146), - [anon_sym_RBRACK] = ACTIONS(1146), + [sym__type] = STATE(693), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(34), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1148), - [anon_sym_package] = ACTIONS(1148), - [anon_sym_import] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_case] = ACTIONS(1148), - [anon_sym_object] = ACTIONS(1148), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_trait] = ACTIONS(1148), - [anon_sym_val] = ACTIONS(1148), - [anon_sym_COLON] = ACTIONS(1148), - [anon_sym_EQ] = ACTIONS(1148), - [anon_sym_var] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_def] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(1148), - [anon_sym_final] = ACTIONS(1148), - [anon_sym_sealed] = ACTIONS(1148), - [anon_sym_implicit] = ACTIONS(1148), - [anon_sym_lazy] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_extends] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [sym_comment] = ACTIONS(34), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(1176), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [440] = { - [aux_sym_type_parameters_repeat1] = STATE(440), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_RBRACK] = ACTIONS(1146), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1044), + [anon_sym_package] = ACTIONS(1046), + [anon_sym_import] = ACTIONS(1046), + [anon_sym_case] = ACTIONS(1046), + [anon_sym_object] = ACTIONS(1046), + [anon_sym_class] = ACTIONS(1046), + [anon_sym_trait] = ACTIONS(1046), + [anon_sym_val] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(1182), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_type] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1046), + [anon_sym_abstract] = ACTIONS(1046), + [anon_sym_final] = ACTIONS(1046), + [anon_sym_sealed] = ACTIONS(1046), + [anon_sym_implicit] = ACTIONS(1046), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_override] = ACTIONS(1046), + [anon_sym_private] = ACTIONS(1046), + [anon_sym_protected] = ACTIONS(1046), + [anon_sym_with] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(550), + [sym_operator_identifier] = ACTIONS(550), + [sym_comment] = ACTIONS(464), }, [441] = { - [sym_identifier] = ACTIONS(1153), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(1184), + [anon_sym_package] = ACTIONS(1186), + [anon_sym_import] = ACTIONS(1186), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_object] = ACTIONS(1186), + [anon_sym_class] = ACTIONS(1186), + [anon_sym_trait] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_def] = ACTIONS(1186), + [anon_sym_abstract] = ACTIONS(1186), + [anon_sym_final] = ACTIONS(1186), + [anon_sym_sealed] = ACTIONS(1186), + [anon_sym_implicit] = ACTIONS(1186), + [anon_sym_lazy] = ACTIONS(1186), + [anon_sym_override] = ACTIONS(1186), + [anon_sym_private] = ACTIONS(1186), + [anon_sym_protected] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [442] = { - [sym__type] = STATE(697), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym__type] = STATE(695), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(34), }, [443] = { - [anon_sym_COMMA] = ACTIONS(791), - [anon_sym_RBRACK] = ACTIONS(791), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_with] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(793), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(1182), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [444] = { - [sym__type] = STATE(698), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(253), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1188), + [anon_sym_package] = ACTIONS(1190), + [anon_sym_import] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_object] = ACTIONS(1190), + [anon_sym_class] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_val] = ACTIONS(1190), + [anon_sym_var] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_def] = ACTIONS(1190), + [anon_sym_abstract] = ACTIONS(1190), + [anon_sym_final] = ACTIONS(1190), + [anon_sym_sealed] = ACTIONS(1190), + [anon_sym_implicit] = ACTIONS(1190), + [anon_sym_lazy] = ACTIONS(1190), + [anon_sym_override] = ACTIONS(1190), + [anon_sym_private] = ACTIONS(1190), + [anon_sym_protected] = ACTIONS(1190), + [anon_sym_with] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [sym_operator_identifier] = ACTIONS(655), + [sym_comment] = ACTIONS(464), }, [445] = { - [anon_sym_EQ_GT] = ACTIONS(1155), + [sym__type] = STATE(696), + [sym_compound_type] = STATE(188), + [sym_infix_type] = STATE(188), + [sym_stable_type_identifier] = STATE(189), + [sym_stable_identifier] = STATE(190), + [sym_generic_type] = STATE(188), + [sym_function_type] = STATE(188), + [sym_parameter_types] = STATE(191), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(326), [sym_comment] = ACTIONS(34), }, [446] = { - [sym__type] = STATE(699), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(253), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_block] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(1168), + [anon_sym_package] = ACTIONS(1168), + [anon_sym_import] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_case] = ACTIONS(1168), + [anon_sym_object] = ACTIONS(1168), + [anon_sym_class] = ACTIONS(1168), + [anon_sym_trait] = ACTIONS(1168), + [anon_sym_val] = ACTIONS(1168), + [anon_sym_COLON] = ACTIONS(1192), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_var] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1168), + [anon_sym_def] = ACTIONS(1168), + [anon_sym_abstract] = ACTIONS(1168), + [anon_sym_final] = ACTIONS(1168), + [anon_sym_sealed] = ACTIONS(1168), + [anon_sym_implicit] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1168), + [anon_sym_override] = ACTIONS(1168), + [anon_sym_private] = ACTIONS(1168), + [anon_sym_protected] = ACTIONS(1168), [sym_comment] = ACTIONS(34), }, [447] = { - [sym__type] = STATE(700), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(253), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_renamed_identifier] = STATE(699), + [sym_identifier] = ACTIONS(1196), [sym_comment] = ACTIONS(34), }, [448] = { - [aux_sym_parameter_types_repeat1] = STATE(702), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(1157), + [ts_builtin_sym_end] = ACTIONS(1198), + [anon_sym_package] = ACTIONS(1198), + [anon_sym_import] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), + [anon_sym_class] = ACTIONS(1198), + [anon_sym_trait] = ACTIONS(1198), + [anon_sym_val] = ACTIONS(1198), + [anon_sym_var] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_def] = ACTIONS(1198), + [anon_sym_abstract] = ACTIONS(1198), + [anon_sym_final] = ACTIONS(1198), + [anon_sym_sealed] = ACTIONS(1198), + [anon_sym_implicit] = ACTIONS(1198), + [anon_sym_lazy] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), [sym_comment] = ACTIONS(34), }, [449] = { - [anon_sym_COMMA] = ACTIONS(797), - [anon_sym_RBRACK] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(797), - [anon_sym_with] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(799), - [sym_comment] = ACTIONS(432), + [sym_wildcard] = STATE(700), + [anon_sym__] = ACTIONS(56), + [sym_identifier] = ACTIONS(1200), + [sym_comment] = ACTIONS(34), }, [450] = { - [sym__type] = STATE(703), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(253), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [aux_sym_import_selectors_repeat1] = STATE(702), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(1202), [sym_comment] = ACTIONS(34), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(500), - [anon_sym_package] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_def] = ACTIONS(1159), - [anon_sym_abstract] = ACTIONS(1159), - [anon_sym_final] = ACTIONS(1159), - [anon_sym_sealed] = ACTIONS(1159), - [anon_sym_implicit] = ACTIONS(1159), - [anon_sym_lazy] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1204), + [anon_sym_package] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_object] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(1204), + [anon_sym_trait] = ACTIONS(1204), + [anon_sym_val] = ACTIONS(1204), + [anon_sym_var] = ACTIONS(1204), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_def] = ACTIONS(1204), + [anon_sym_abstract] = ACTIONS(1204), + [anon_sym_final] = ACTIONS(1204), + [anon_sym_sealed] = ACTIONS(1204), + [anon_sym_implicit] = ACTIONS(1204), + [anon_sym_lazy] = ACTIONS(1204), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_private] = ACTIONS(1204), + [anon_sym_protected] = ACTIONS(1204), + [sym_comment] = ACTIONS(34), }, [452] = { - [aux_sym_parameter_types_repeat1] = STATE(708), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1165), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(1204), + [anon_sym_package] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_object] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(1204), + [anon_sym_trait] = ACTIONS(1204), + [anon_sym_val] = ACTIONS(1204), + [anon_sym_var] = ACTIONS(1204), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_def] = ACTIONS(1204), + [anon_sym_abstract] = ACTIONS(1204), + [anon_sym_final] = ACTIONS(1204), + [anon_sym_sealed] = ACTIONS(1204), + [anon_sym_implicit] = ACTIONS(1204), + [anon_sym_lazy] = ACTIONS(1204), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_private] = ACTIONS(1204), + [anon_sym_protected] = ACTIONS(1204), + [sym_comment] = ACTIONS(34), }, [453] = { - [anon_sym_EQ_GT] = ACTIONS(1173), + [sym_type_parameters] = STATE(704), + [sym_template_body] = STATE(101), + [sym_extends_clause] = STATE(102), + [sym_class_parameters] = STATE(705), + [anon_sym_package] = ACTIONS(222), + [anon_sym_import] = ACTIONS(222), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_case] = ACTIONS(222), + [anon_sym_object] = ACTIONS(222), + [anon_sym_class] = ACTIONS(222), + [anon_sym_trait] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_val] = ACTIONS(222), + [anon_sym_var] = ACTIONS(222), + [anon_sym_type] = ACTIONS(222), + [anon_sym_def] = ACTIONS(222), + [anon_sym_abstract] = ACTIONS(222), + [anon_sym_final] = ACTIONS(222), + [anon_sym_sealed] = ACTIONS(222), + [anon_sym_implicit] = ACTIONS(222), + [anon_sym_lazy] = ACTIONS(222), + [anon_sym_override] = ACTIONS(222), + [anon_sym_private] = ACTIONS(222), + [anon_sym_protected] = ACTIONS(222), + [anon_sym_extends] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(110), [sym_comment] = ACTIONS(34), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [anon_sym_package] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_object] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_trait] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_def] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_final] = ACTIONS(1177), - [anon_sym_sealed] = ACTIONS(1177), - [anon_sym_implicit] = ACTIONS(1177), - [anon_sym_lazy] = ACTIONS(1177), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(707), + [sym_compound_type] = STATE(708), + [sym_infix_type] = STATE(708), + [sym_stable_type_identifier] = STATE(709), + [sym_stable_identifier] = STATE(710), + [sym_generic_type] = STATE(708), + [sym_function_type] = STATE(708), + [sym_parameter_types] = STATE(711), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1206), + [sym_comment] = ACTIONS(34), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_trait] = ACTIONS(1183), - [anon_sym_val] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_def] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_implicit] = ACTIONS(1183), - [anon_sym_lazy] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(101), + [sym_extends_clause] = STATE(102), + [sym_class_parameters] = STATE(705), + [anon_sym_package] = ACTIONS(222), + [anon_sym_import] = ACTIONS(222), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_case] = ACTIONS(222), + [anon_sym_object] = ACTIONS(222), + [anon_sym_class] = ACTIONS(222), + [anon_sym_trait] = ACTIONS(222), + [anon_sym_val] = ACTIONS(222), + [anon_sym_var] = ACTIONS(222), + [anon_sym_type] = ACTIONS(222), + [anon_sym_def] = ACTIONS(222), + [anon_sym_abstract] = ACTIONS(222), + [anon_sym_final] = ACTIONS(222), + [anon_sym_sealed] = ACTIONS(222), + [anon_sym_implicit] = ACTIONS(222), + [anon_sym_lazy] = ACTIONS(222), + [anon_sym_override] = ACTIONS(222), + [anon_sym_private] = ACTIONS(222), + [anon_sym_protected] = ACTIONS(222), + [anon_sym_extends] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(110), + [sym_comment] = ACTIONS(34), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1187), - [anon_sym_package] = ACTIONS(1189), - [anon_sym_import] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_object] = ACTIONS(1189), - [anon_sym_class] = ACTIONS(1189), - [anon_sym_trait] = ACTIONS(1189), - [anon_sym_val] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_abstract] = ACTIONS(1189), - [anon_sym_final] = ACTIONS(1189), - [anon_sym_sealed] = ACTIONS(1189), - [anon_sym_implicit] = ACTIONS(1189), - [anon_sym_lazy] = ACTIONS(1189), - [anon_sym_override] = ACTIONS(1189), - [anon_sym_private] = ACTIONS(1189), - [anon_sym_protected] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(438), - [sym_identifier] = ACTIONS(440), - [sym_operator_identifier] = ACTIONS(440), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(101), + [sym_extends_clause] = STATE(102), + [anon_sym_package] = ACTIONS(222), + [anon_sym_import] = ACTIONS(222), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_case] = ACTIONS(222), + [anon_sym_object] = ACTIONS(222), + [anon_sym_class] = ACTIONS(222), + [anon_sym_trait] = ACTIONS(222), + [anon_sym_val] = ACTIONS(222), + [anon_sym_var] = ACTIONS(222), + [anon_sym_type] = ACTIONS(222), + [anon_sym_def] = ACTIONS(222), + [anon_sym_abstract] = ACTIONS(222), + [anon_sym_final] = ACTIONS(222), + [anon_sym_sealed] = ACTIONS(222), + [anon_sym_implicit] = ACTIONS(222), + [anon_sym_lazy] = ACTIONS(222), + [anon_sym_override] = ACTIONS(222), + [anon_sym_private] = ACTIONS(222), + [anon_sym_protected] = ACTIONS(222), + [anon_sym_extends] = ACTIONS(769), + [sym_comment] = ACTIONS(34), }, [457] = { - [sym__type] = STATE(710), - [sym_compound_type] = STATE(461), - [sym_infix_type] = STATE(461), - [sym_stable_type_identifier] = STATE(462), - [sym_stable_identifier] = STATE(463), - [sym_generic_type] = STATE(461), - [sym_function_type] = STATE(461), - [sym_parameter_types] = STATE(464), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(809), + [sym__type] = STATE(713), + [sym_compound_type] = STATE(714), + [sym_infix_type] = STATE(714), + [sym_stable_type_identifier] = STATE(715), + [sym_stable_identifier] = STATE(716), + [sym_generic_type] = STATE(714), + [sym_function_type] = STATE(714), + [sym_parameter_types] = STATE(717), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1208), [sym_comment] = ACTIONS(34), }, [458] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(711), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym_block] = STATE(727), + [sym__expression] = STATE(728), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [459] = { - [sym_type_arguments] = STATE(714), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_COMMA] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_with] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1230), + [sym_comment] = ACTIONS(34), }, [460] = { - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_EQ] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1195), - [anon_sym_with] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1201), - [sym_operator_identifier] = ACTIONS(1201), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(730), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), + [sym_comment] = ACTIONS(34), }, [461] = { - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(731), + [sym_compound_type] = STATE(714), + [sym_infix_type] = STATE(714), + [sym_stable_type_identifier] = STATE(715), + [sym_stable_identifier] = STATE(716), + [sym_generic_type] = STATE(714), + [sym_function_type] = STATE(714), + [sym_parameter_types] = STATE(717), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1208), + [sym_comment] = ACTIONS(34), }, [462] = { - [sym_type_arguments] = STATE(718), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(727), + [sym__expression] = STATE(732), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), + [sym_comment] = ACTIONS(34), }, [463] = { - [anon_sym_DOT] = ACTIONS(1191), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1232), [sym_comment] = ACTIONS(34), }, [464] = { - [anon_sym_EQ_GT] = ACTIONS(1203), + [sym__type] = STATE(734), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), [sym_comment] = ACTIONS(34), }, [465] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1195), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(736), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), + [sym_comment] = ACTIONS(34), }, [466] = { - [anon_sym_COMMA] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1236), [sym_comment] = ACTIONS(34), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1207), - [anon_sym_package] = ACTIONS(1207), - [anon_sym_import] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(1207), - [anon_sym_case] = ACTIONS(1207), - [anon_sym_object] = ACTIONS(1207), - [anon_sym_class] = ACTIONS(1207), - [anon_sym_trait] = ACTIONS(1207), - [anon_sym_val] = ACTIONS(1207), - [anon_sym_var] = ACTIONS(1207), - [anon_sym_type] = ACTIONS(1207), - [anon_sym_def] = ACTIONS(1207), - [anon_sym_abstract] = ACTIONS(1207), - [anon_sym_final] = ACTIONS(1207), - [anon_sym_sealed] = ACTIONS(1207), - [anon_sym_implicit] = ACTIONS(1207), - [anon_sym_lazy] = ACTIONS(1207), - [anon_sym_override] = ACTIONS(1207), - [anon_sym_private] = ACTIONS(1207), - [anon_sym_protected] = ACTIONS(1207), - [anon_sym_extends] = ACTIONS(1207), + [sym__type] = STATE(743), + [sym_compound_type] = STATE(744), + [sym_infix_type] = STATE(744), + [sym_stable_type_identifier] = STATE(745), + [sym_stable_identifier] = STATE(746), + [sym_generic_type] = STATE(744), + [sym_function_type] = STATE(744), + [sym_parameter_types] = STATE(747), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1238), [sym_comment] = ACTIONS(34), }, [468] = { - [aux_sym_class_parameters_repeat1] = STATE(468), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RPAREN] = ACTIONS(1205), + [sym_block] = STATE(727), + [sym__expression] = STATE(748), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [469] = { - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_with] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [sym_parameters] = STATE(751), + [sym_block] = STATE(230), + [anon_sym_package] = ACTIONS(380), + [anon_sym_import] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_case] = ACTIONS(380), + [anon_sym_object] = ACTIONS(380), + [anon_sym_class] = ACTIONS(380), + [anon_sym_trait] = ACTIONS(380), + [anon_sym_val] = ACTIONS(380), + [anon_sym_COLON] = ACTIONS(1240), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_var] = ACTIONS(380), + [anon_sym_type] = ACTIONS(380), + [anon_sym_def] = ACTIONS(380), + [anon_sym_abstract] = ACTIONS(380), + [anon_sym_final] = ACTIONS(380), + [anon_sym_sealed] = ACTIONS(380), + [anon_sym_implicit] = ACTIONS(380), + [anon_sym_lazy] = ACTIONS(380), + [anon_sym_override] = ACTIONS(380), + [anon_sym_private] = ACTIONS(380), + [anon_sym_protected] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(162), + [sym_comment] = ACTIONS(34), }, [470] = { - [aux_sym_parameter_types_repeat1] = STATE(721), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1212), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(230), + [anon_sym_package] = ACTIONS(380), + [anon_sym_import] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_case] = ACTIONS(380), + [anon_sym_object] = ACTIONS(380), + [anon_sym_class] = ACTIONS(380), + [anon_sym_trait] = ACTIONS(380), + [anon_sym_val] = ACTIONS(380), + [anon_sym_COLON] = ACTIONS(1240), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_var] = ACTIONS(380), + [anon_sym_type] = ACTIONS(380), + [anon_sym_def] = ACTIONS(380), + [anon_sym_abstract] = ACTIONS(380), + [anon_sym_final] = ACTIONS(380), + [anon_sym_sealed] = ACTIONS(380), + [anon_sym_implicit] = ACTIONS(380), + [anon_sym_lazy] = ACTIONS(380), + [anon_sym_override] = ACTIONS(380), + [anon_sym_private] = ACTIONS(380), + [anon_sym_protected] = ACTIONS(380), + [sym_comment] = ACTIONS(34), }, [471] = { - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(1244), + [sym_comment] = ACTIONS(34), }, [472] = { - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [aux_sym_val_declaration_repeat1] = STATE(755), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1246), + [anon_sym_EQ] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [473] = { - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(468), - [sym_identifier] = ACTIONS(470), - [sym_operator_identifier] = ACTIONS(470), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(1250), + [anon_sym_EQ] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(140), + [sym_comment] = ACTIONS(34), }, [474] = { - [sym__string_middle] = ACTIONS(1058), - [sym__string_end] = ACTIONS(1058), + [aux_sym_val_declaration_repeat1] = STATE(759), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [475] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [anon_sym_COLON] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [476] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_LF] = ACTIONS(1218), - [sym_comment] = ACTIONS(432), + [sym_type_parameters] = STATE(762), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(1258), + [sym_comment] = ACTIONS(34), }, [477] = { - [sym__multiline_string_middle] = ACTIONS(1058), - [sym__multiline_string_end] = ACTIONS(1058), + [sym_type_parameters] = STATE(763), + [sym_parameters] = STATE(751), + [sym_block] = STATE(230), + [anon_sym_package] = ACTIONS(380), + [anon_sym_import] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_case] = ACTIONS(380), + [anon_sym_object] = ACTIONS(380), + [anon_sym_class] = ACTIONS(380), + [anon_sym_trait] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_val] = ACTIONS(380), + [anon_sym_COLON] = ACTIONS(1240), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_var] = ACTIONS(380), + [anon_sym_type] = ACTIONS(380), + [anon_sym_def] = ACTIONS(380), + [anon_sym_abstract] = ACTIONS(380), + [anon_sym_final] = ACTIONS(380), + [anon_sym_sealed] = ACTIONS(380), + [anon_sym_implicit] = ACTIONS(380), + [anon_sym_lazy] = ACTIONS(380), + [anon_sym_override] = ACTIONS(380), + [anon_sym_private] = ACTIONS(380), + [anon_sym_protected] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(162), [sym_comment] = ACTIONS(34), }, [478] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [anon_sym_COMMA] = ACTIONS(1260), + [anon_sym_RBRACK] = ACTIONS(1260), [sym_comment] = ACTIONS(34), }, [479] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1224), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1262), + [anon_sym_package] = ACTIONS(1262), + [anon_sym_import] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_object] = ACTIONS(1262), + [anon_sym_class] = ACTIONS(1262), + [anon_sym_trait] = ACTIONS(1262), + [anon_sym_val] = ACTIONS(1262), + [anon_sym_COLON] = ACTIONS(1262), + [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_var] = ACTIONS(1262), + [anon_sym_type] = ACTIONS(1262), + [anon_sym_def] = ACTIONS(1262), + [anon_sym_abstract] = ACTIONS(1262), + [anon_sym_final] = ACTIONS(1262), + [anon_sym_sealed] = ACTIONS(1262), + [anon_sym_implicit] = ACTIONS(1262), + [anon_sym_lazy] = ACTIONS(1262), + [anon_sym_override] = ACTIONS(1262), + [anon_sym_private] = ACTIONS(1262), + [anon_sym_protected] = ACTIONS(1262), + [anon_sym_extends] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1262), + [sym_comment] = ACTIONS(34), }, [480] = { - [sym_identifier] = ACTIONS(1226), + [aux_sym_type_parameters_repeat1] = STATE(480), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_RBRACK] = ACTIONS(1260), [sym_comment] = ACTIONS(34), }, [481] = { - [sym__type] = STATE(727), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_identifier] = ACTIONS(1267), [sym_comment] = ACTIONS(34), }, [482] = { - [anon_sym_COMMA] = ACTIONS(791), - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_with] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(765), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [483] = { - [sym__type] = STATE(728), - [sym_compound_type] = STATE(290), - [sym_infix_type] = STATE(290), - [sym_stable_type_identifier] = STATE(291), - [sym_stable_identifier] = STATE(292), - [sym_generic_type] = STATE(290), - [sym_function_type] = STATE(290), - [sym_parameter_types] = STATE(293), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(492), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_with] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(849), + [sym_comment] = ACTIONS(464), }, [484] = { - [sym__type] = STATE(729), - [sym_compound_type] = STATE(290), - [sym_infix_type] = STATE(290), - [sym_stable_type_identifier] = STATE(291), - [sym_stable_identifier] = STATE(292), - [sym_generic_type] = STATE(290), - [sym_function_type] = STATE(290), - [sym_parameter_types] = STATE(293), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(492), + [sym__type] = STATE(766), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(272), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [485] = { - [anon_sym_COMMA] = ACTIONS(797), - [anon_sym_COLON] = ACTIONS(799), - [anon_sym_RPAREN] = ACTIONS(797), - [anon_sym_with] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(1269), + [sym_comment] = ACTIONS(34), }, [486] = { - [sym__type] = STATE(730), - [sym_compound_type] = STATE(290), - [sym_infix_type] = STATE(290), - [sym_stable_type_identifier] = STATE(291), - [sym_stable_identifier] = STATE(292), - [sym_generic_type] = STATE(290), - [sym_function_type] = STATE(290), - [sym_parameter_types] = STATE(293), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(492), + [sym__type] = STATE(767), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(272), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [487] = { - [ts_builtin_sym_end] = ACTIONS(500), - [anon_sym_package] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_def] = ACTIONS(1159), - [anon_sym_abstract] = ACTIONS(1159), - [anon_sym_final] = ACTIONS(1159), - [anon_sym_sealed] = ACTIONS(1159), - [anon_sym_implicit] = ACTIONS(1159), - [anon_sym_lazy] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(768), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(272), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [488] = { - [aux_sym_parameter_types_repeat1] = STATE(732), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1228), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(770), + [anon_sym_COMMA] = ACTIONS(833), + [anon_sym_RPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(34), }, [489] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1230), - [anon_sym_package] = ACTIONS(1232), - [anon_sym_import] = ACTIONS(1232), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_object] = ACTIONS(1232), - [anon_sym_class] = ACTIONS(1232), - [anon_sym_trait] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(1232), - [anon_sym_type] = ACTIONS(1232), - [anon_sym_def] = ACTIONS(1232), - [anon_sym_abstract] = ACTIONS(1232), - [anon_sym_final] = ACTIONS(1232), - [anon_sym_sealed] = ACTIONS(1232), - [anon_sym_implicit] = ACTIONS(1232), - [anon_sym_lazy] = ACTIONS(1232), - [anon_sym_override] = ACTIONS(1232), - [anon_sym_private] = ACTIONS(1232), - [anon_sym_protected] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_RBRACK] = ACTIONS(853), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_with] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(855), + [sym_comment] = ACTIONS(464), }, [490] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [anon_sym_package] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_object] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_trait] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(1177), - [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_EQ] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_def] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_final] = ACTIONS(1177), - [anon_sym_sealed] = ACTIONS(1177), - [anon_sym_implicit] = ACTIONS(1177), - [anon_sym_lazy] = ACTIONS(1177), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(771), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(272), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [491] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_trait] = ACTIONS(1183), - [anon_sym_val] = ACTIONS(1183), - [anon_sym_COLON] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_def] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_implicit] = ACTIONS(1183), - [anon_sym_lazy] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(532), + [anon_sym_package] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [anon_sym_class] = ACTIONS(1273), + [anon_sym_trait] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_val] = ACTIONS(1273), + [anon_sym_var] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1273), + [anon_sym_abstract] = ACTIONS(1273), + [anon_sym_final] = ACTIONS(1273), + [anon_sym_sealed] = ACTIONS(1273), + [anon_sym_implicit] = ACTIONS(1273), + [anon_sym_lazy] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_with] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [492] = { - [ts_builtin_sym_end] = ACTIONS(1187), - [anon_sym_package] = ACTIONS(1189), - [anon_sym_import] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_object] = ACTIONS(1189), - [anon_sym_class] = ACTIONS(1189), - [anon_sym_trait] = ACTIONS(1189), - [anon_sym_val] = ACTIONS(1189), - [anon_sym_COLON] = ACTIONS(1189), - [anon_sym_EQ] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_abstract] = ACTIONS(1189), - [anon_sym_final] = ACTIONS(1189), - [anon_sym_sealed] = ACTIONS(1189), - [anon_sym_implicit] = ACTIONS(1189), - [anon_sym_lazy] = ACTIONS(1189), - [anon_sym_override] = ACTIONS(1189), - [anon_sym_private] = ACTIONS(1189), - [anon_sym_protected] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(1189), - [sym_identifier] = ACTIONS(518), - [sym_operator_identifier] = ACTIONS(518), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(776), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1279), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [493] = { - [ts_builtin_sym_end] = ACTIONS(480), - [anon_sym_package] = ACTIONS(482), - [anon_sym_import] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_case] = ACTIONS(482), - [anon_sym_object] = ACTIONS(482), - [anon_sym_class] = ACTIONS(482), - [anon_sym_trait] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_val] = ACTIONS(482), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_var] = ACTIONS(482), - [anon_sym_type] = ACTIONS(482), - [anon_sym_def] = ACTIONS(482), - [anon_sym_abstract] = ACTIONS(482), - [anon_sym_final] = ACTIONS(482), - [anon_sym_sealed] = ACTIONS(482), - [anon_sym_implicit] = ACTIONS(482), - [anon_sym_lazy] = ACTIONS(482), - [anon_sym_override] = ACTIONS(482), - [anon_sym_private] = ACTIONS(482), - [anon_sym_protected] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_match] = ACTIONS(482), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(1287), + [sym_comment] = ACTIONS(34), }, [494] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(1236), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1289), + [anon_sym_package] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_object] = ACTIONS(1291), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_val] = ACTIONS(1291), + [anon_sym_var] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(1291), + [anon_sym_final] = ACTIONS(1291), + [anon_sym_sealed] = ACTIONS(1291), + [anon_sym_implicit] = ACTIONS(1291), + [anon_sym_lazy] = ACTIONS(1291), + [anon_sym_override] = ACTIONS(1291), + [anon_sym_private] = ACTIONS(1291), + [anon_sym_protected] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [495] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(1236), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1295), + [anon_sym_package] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_object] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(1297), + [anon_sym_trait] = ACTIONS(1297), + [anon_sym_val] = ACTIONS(1297), + [anon_sym_var] = ACTIONS(1297), + [anon_sym_type] = ACTIONS(1297), + [anon_sym_def] = ACTIONS(1297), + [anon_sym_abstract] = ACTIONS(1297), + [anon_sym_final] = ACTIONS(1297), + [anon_sym_sealed] = ACTIONS(1297), + [anon_sym_implicit] = ACTIONS(1297), + [anon_sym_lazy] = ACTIONS(1297), + [anon_sym_override] = ACTIONS(1297), + [anon_sym_private] = ACTIONS(1297), + [anon_sym_protected] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [496] = { - [ts_builtin_sym_end] = ACTIONS(1058), - [anon_sym_package] = ACTIONS(1238), - [anon_sym_import] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_object] = ACTIONS(1238), - [anon_sym_class] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_val] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_var] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_def] = ACTIONS(1238), - [anon_sym_abstract] = ACTIONS(1238), - [anon_sym_final] = ACTIONS(1238), - [anon_sym_sealed] = ACTIONS(1238), - [anon_sym_implicit] = ACTIONS(1238), - [anon_sym_lazy] = ACTIONS(1238), - [anon_sym_override] = ACTIONS(1238), - [anon_sym_private] = ACTIONS(1238), - [anon_sym_protected] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1301), + [anon_sym_package] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_object] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_val] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_sealed] = ACTIONS(1303), + [anon_sym_implicit] = ACTIONS(1303), + [anon_sym_lazy] = ACTIONS(1303), + [anon_sym_override] = ACTIONS(1303), + [anon_sym_private] = ACTIONS(1303), + [anon_sym_protected] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(470), + [sym_identifier] = ACTIONS(472), + [sym_operator_identifier] = ACTIONS(472), + [sym_comment] = ACTIONS(464), }, [497] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym__type] = STATE(778), + [sym_compound_type] = STATE(501), + [sym_infix_type] = STATE(501), + [sym_stable_type_identifier] = STATE(502), + [sym_stable_identifier] = STATE(503), + [sym_generic_type] = STATE(501), + [sym_function_type] = STATE(501), + [sym_parameter_types] = STATE(504), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(865), [sym_comment] = ACTIONS(34), }, [498] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_LF] = ACTIONS(1246), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(779), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [499] = { - [aux_sym_string_repeat1] = STATE(737), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(1248), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(782), + [anon_sym_DOT] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_RPAREN] = ACTIONS(454), + [anon_sym_with] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [500] = { - [aux_sym_string_repeat2] = STATE(738), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(1248), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_with] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), + [sym_operator_identifier] = ACTIONS(1315), + [sym_comment] = ACTIONS(464), }, [501] = { - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_match] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [502] = { - [aux_sym_block_repeat1] = STATE(741), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1252), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(786), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [503] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(741), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1252), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1305), + [sym_comment] = ACTIONS(34), }, [504] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(743), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(1317), + [sym_comment] = ACTIONS(34), }, [505] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(754), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [506] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_match] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1319), + [sym_comment] = ACTIONS(34), }, [507] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_match] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_package] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_case] = ACTIONS(1321), + [anon_sym_object] = ACTIONS(1321), + [anon_sym_class] = ACTIONS(1321), + [anon_sym_trait] = ACTIONS(1321), + [anon_sym_val] = ACTIONS(1321), + [anon_sym_var] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_def] = ACTIONS(1321), + [anon_sym_abstract] = ACTIONS(1321), + [anon_sym_final] = ACTIONS(1321), + [anon_sym_sealed] = ACTIONS(1321), + [anon_sym_implicit] = ACTIONS(1321), + [anon_sym_lazy] = ACTIONS(1321), + [anon_sym_override] = ACTIONS(1321), + [anon_sym_private] = ACTIONS(1321), + [anon_sym_protected] = ACTIONS(1321), + [anon_sym_extends] = ACTIONS(1321), + [sym_comment] = ACTIONS(34), }, [508] = { - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(930), - [anon_sym_match] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [aux_sym_class_parameters_repeat1] = STATE(508), + [anon_sym_COMMA] = ACTIONS(1323), + [anon_sym_RPAREN] = ACTIONS(1319), + [sym_comment] = ACTIONS(34), }, [509] = { - [sym_identifier] = ACTIONS(1276), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_with] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [510] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(756), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(789), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1326), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [511] = { - [sym__type] = STATE(757), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [512] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(758), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [513] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(760), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(500), + [sym_identifier] = ACTIONS(502), + [sym_operator_identifier] = ACTIONS(502), + [sym_comment] = ACTIONS(464), }, [514] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [anon_sym_package] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), - [anon_sym_class] = ACTIONS(1282), - [anon_sym_trait] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_val] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_var] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_abstract] = ACTIONS(1282), - [anon_sym_final] = ACTIONS(1282), - [anon_sym_sealed] = ACTIONS(1282), - [anon_sym_implicit] = ACTIONS(1282), - [anon_sym_lazy] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [sym__string_middle] = ACTIONS(1130), + [sym__string_end] = ACTIONS(1130), + [sym_comment] = ACTIONS(34), }, [515] = { - [sym_case_block] = STATE(762), - [anon_sym_LBRACE] = ACTIONS(1286), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [516] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(763), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym_LF] = ACTIONS(1332), + [sym_comment] = ACTIONS(464), }, [517] = { - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(942), - [anon_sym_match] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [sym__multiline_string_middle] = ACTIONS(1130), + [sym__multiline_string_end] = ACTIONS(1130), + [sym_comment] = ACTIONS(34), }, [518] = { - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_COMMA] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_match] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [519] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(1288), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1338), + [sym_comment] = ACTIONS(464), }, [520] = { - [sym_parenthesized_expression] = STATE(766), - [anon_sym_LPAREN] = ACTIONS(546), + [sym_identifier] = ACTIONS(1340), [sym_comment] = ACTIONS(34), }, [521] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(506), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(892), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym__type] = STATE(795), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [522] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(507), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(892), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_with] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [523] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(1294), - [sym_operator_identifier] = ACTIONS(1294), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(796), + [sym_compound_type] = STATE(309), + [sym_infix_type] = STATE(309), + [sym_stable_type_identifier] = STATE(310), + [sym_stable_identifier] = STATE(311), + [sym_generic_type] = STATE(309), + [sym_function_type] = STATE(309), + [sym_parameter_types] = STATE(312), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(524), + [sym_comment] = ACTIONS(34), }, [524] = { - [ts_builtin_sym_end] = ACTIONS(110), - [anon_sym_package] = ACTIONS(112), - [anon_sym_import] = ACTIONS(112), - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_case] = ACTIONS(112), - [anon_sym_object] = ACTIONS(112), - [anon_sym_class] = ACTIONS(112), - [anon_sym_trait] = ACTIONS(112), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_val] = ACTIONS(112), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_var] = ACTIONS(112), - [anon_sym_type] = ACTIONS(112), - [anon_sym_def] = ACTIONS(112), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_final] = ACTIONS(112), - [anon_sym_sealed] = ACTIONS(112), - [anon_sym_implicit] = ACTIONS(112), - [anon_sym_lazy] = ACTIONS(112), - [anon_sym_override] = ACTIONS(112), - [anon_sym_private] = ACTIONS(112), - [anon_sym_protected] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_else] = ACTIONS(112), - [anon_sym_match] = ACTIONS(112), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(797), + [sym_compound_type] = STATE(309), + [sym_infix_type] = STATE(309), + [sym_stable_type_identifier] = STATE(310), + [sym_stable_identifier] = STATE(311), + [sym_generic_type] = STATE(309), + [sym_function_type] = STATE(309), + [sym_parameter_types] = STATE(312), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(524), + [sym_comment] = ACTIONS(34), }, [525] = { - [sym_interpolation] = STATE(770), - [anon_sym_DOLLAR] = ACTIONS(114), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_with] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [526] = { - [sym_interpolation] = STATE(771), - [anon_sym_DOLLAR] = ACTIONS(116), + [sym__type] = STATE(798), + [sym_compound_type] = STATE(309), + [sym_infix_type] = STATE(309), + [sym_stable_type_identifier] = STATE(310), + [sym_stable_identifier] = STATE(311), + [sym_generic_type] = STATE(309), + [sym_function_type] = STATE(309), + [sym_parameter_types] = STATE(312), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(524), [sym_comment] = ACTIONS(34), }, [527] = { - [sym_package_clause] = STATE(773), - [sym_import_declaration] = STATE(773), - [sym_object_definition] = STATE(773), - [sym_class_definition] = STATE(773), - [sym_trait_definition] = STATE(773), - [sym_val_definition] = STATE(773), - [sym_val_declaration] = STATE(773), - [sym_var_declaration] = STATE(773), - [sym_var_definition] = STATE(773), - [sym_type_definition] = STATE(773), - [sym_function_definition] = STATE(773), - [sym_function_declaration] = STATE(773), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(774), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(532), + [anon_sym_package] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [anon_sym_class] = ACTIONS(1273), + [anon_sym_trait] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_val] = ACTIONS(1273), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_var] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1273), + [anon_sym_abstract] = ACTIONS(1273), + [anon_sym_final] = ACTIONS(1273), + [anon_sym_sealed] = ACTIONS(1273), + [anon_sym_implicit] = ACTIONS(1273), + [anon_sym_lazy] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_with] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [528] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(775), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(800), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [529] = { - [sym_parenthesized_expression] = STATE(776), - [anon_sym_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(1344), + [anon_sym_package] = ACTIONS(1346), + [anon_sym_import] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_object] = ACTIONS(1346), + [anon_sym_class] = ACTIONS(1346), + [anon_sym_trait] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(1346), + [anon_sym_def] = ACTIONS(1346), + [anon_sym_abstract] = ACTIONS(1346), + [anon_sym_final] = ACTIONS(1346), + [anon_sym_sealed] = ACTIONS(1346), + [anon_sym_implicit] = ACTIONS(1346), + [anon_sym_lazy] = ACTIONS(1346), + [anon_sym_override] = ACTIONS(1346), + [anon_sym_private] = ACTIONS(1346), + [anon_sym_protected] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [530] = { - [sym_block] = STATE(533), - [sym__expression] = STATE(777), - [sym_if_expression] = STATE(533), - [sym_match_expression] = STATE(533), - [sym_assignment_expression] = STATE(533), - [sym_generic_function] = STATE(533), - [sym_call_expression] = STATE(533), - [sym_field_expression] = STATE(533), - [sym_instance_expression] = STATE(533), - [sym_infix_expression] = STATE(533), - [sym_prefix_expression] = STATE(533), - [sym_tuple_expression] = STATE(533), - [sym_parenthesized_expression] = STATE(533), - [sym_string_transform_expression] = STATE(533), - [sym_string] = STATE(533), - [sym__simple_string] = ACTIONS(898), - [sym__string_start] = ACTIONS(900), - [sym__multiline_string_start] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_if] = ACTIONS(908), - [anon_sym_new] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [sym_identifier] = ACTIONS(914), - [sym_number] = ACTIONS(916), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1289), + [anon_sym_package] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_object] = ACTIONS(1291), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_val] = ACTIONS(1291), + [anon_sym_COLON] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_var] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(1291), + [anon_sym_final] = ACTIONS(1291), + [anon_sym_sealed] = ACTIONS(1291), + [anon_sym_implicit] = ACTIONS(1291), + [anon_sym_lazy] = ACTIONS(1291), + [anon_sym_override] = ACTIONS(1291), + [anon_sym_private] = ACTIONS(1291), + [anon_sym_protected] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [531] = { - [sym_block] = STATE(533), - [sym__expression] = STATE(778), - [sym_if_expression] = STATE(533), - [sym_match_expression] = STATE(533), - [sym_assignment_expression] = STATE(533), - [sym_generic_function] = STATE(533), - [sym_call_expression] = STATE(533), - [sym_field_expression] = STATE(533), - [sym_instance_expression] = STATE(533), - [sym_infix_expression] = STATE(533), - [sym_prefix_expression] = STATE(533), - [sym_tuple_expression] = STATE(533), - [sym_parenthesized_expression] = STATE(533), - [sym_string_transform_expression] = STATE(533), - [sym_string] = STATE(533), - [sym__simple_string] = ACTIONS(898), - [sym__string_start] = ACTIONS(900), - [sym__multiline_string_start] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_if] = ACTIONS(908), - [anon_sym_new] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [sym_identifier] = ACTIONS(914), - [sym_number] = ACTIONS(916), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1295), + [anon_sym_package] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_object] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(1297), + [anon_sym_trait] = ACTIONS(1297), + [anon_sym_val] = ACTIONS(1297), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1297), + [anon_sym_var] = ACTIONS(1297), + [anon_sym_type] = ACTIONS(1297), + [anon_sym_def] = ACTIONS(1297), + [anon_sym_abstract] = ACTIONS(1297), + [anon_sym_final] = ACTIONS(1297), + [anon_sym_sealed] = ACTIONS(1297), + [anon_sym_implicit] = ACTIONS(1297), + [anon_sym_lazy] = ACTIONS(1297), + [anon_sym_override] = ACTIONS(1297), + [anon_sym_private] = ACTIONS(1297), + [anon_sym_protected] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [532] = { - [sym_string] = STATE(779), - [sym__simple_string] = ACTIONS(898), - [sym__string_start] = ACTIONS(900), - [sym__multiline_string_start] = ACTIONS(902), - [ts_builtin_sym_end] = ACTIONS(548), - [anon_sym_package] = ACTIONS(550), - [anon_sym_import] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_case] = ACTIONS(550), - [anon_sym_object] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_val] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_var] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_def] = ACTIONS(550), - [anon_sym_abstract] = ACTIONS(550), - [anon_sym_final] = ACTIONS(550), - [anon_sym_sealed] = ACTIONS(550), - [anon_sym_implicit] = ACTIONS(550), - [anon_sym_lazy] = ACTIONS(550), - [anon_sym_override] = ACTIONS(550), - [anon_sym_private] = ACTIONS(550), - [anon_sym_protected] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1301), + [anon_sym_package] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_object] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_val] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_sealed] = ACTIONS(1303), + [anon_sym_implicit] = ACTIONS(1303), + [anon_sym_lazy] = ACTIONS(1303), + [anon_sym_override] = ACTIONS(1303), + [anon_sym_private] = ACTIONS(1303), + [anon_sym_protected] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(1303), + [sym_identifier] = ACTIONS(550), + [sym_operator_identifier] = ACTIONS(550), + [sym_comment] = ACTIONS(464), }, [533] = { - [ts_builtin_sym_end] = ACTIONS(548), - [anon_sym_package] = ACTIONS(550), - [anon_sym_import] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_case] = ACTIONS(550), - [anon_sym_object] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_val] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_var] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_def] = ACTIONS(550), - [anon_sym_abstract] = ACTIONS(550), - [anon_sym_final] = ACTIONS(550), - [anon_sym_sealed] = ACTIONS(550), - [anon_sym_implicit] = ACTIONS(550), - [anon_sym_lazy] = ACTIONS(550), - [anon_sym_override] = ACTIONS(550), - [anon_sym_private] = ACTIONS(550), - [anon_sym_protected] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(512), + [anon_sym_package] = ACTIONS(514), + [anon_sym_import] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_case] = ACTIONS(514), + [anon_sym_object] = ACTIONS(514), + [anon_sym_class] = ACTIONS(514), + [anon_sym_trait] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_val] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_var] = ACTIONS(514), + [anon_sym_type] = ACTIONS(514), + [anon_sym_def] = ACTIONS(514), + [anon_sym_abstract] = ACTIONS(514), + [anon_sym_final] = ACTIONS(514), + [anon_sym_sealed] = ACTIONS(514), + [anon_sym_implicit] = ACTIONS(514), + [anon_sym_lazy] = ACTIONS(514), + [anon_sym_override] = ACTIONS(514), + [anon_sym_private] = ACTIONS(514), + [anon_sym_protected] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_match] = ACTIONS(514), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), }, [534] = { - [sym_type_arguments] = STATE(787), - [sym_arguments] = STATE(788), - [ts_builtin_sym_end] = ACTIONS(1298), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_object] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_val] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_var] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_sealed] = ACTIONS(1300), - [anon_sym_implicit] = ACTIONS(1300), - [anon_sym_lazy] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_protected] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [sym_operator_identifier] = ACTIONS(1314), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(1350), + [sym_comment] = ACTIONS(34), }, [535] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [anon_sym_package] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(1318), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_object] = ACTIONS(1318), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_trait] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_val] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_var] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_def] = ACTIONS(1318), - [anon_sym_abstract] = ACTIONS(1318), - [anon_sym_final] = ACTIONS(1318), - [anon_sym_sealed] = ACTIONS(1318), - [anon_sym_implicit] = ACTIONS(1318), - [anon_sym_lazy] = ACTIONS(1318), - [anon_sym_override] = ACTIONS(1318), - [anon_sym_private] = ACTIONS(1318), - [anon_sym_protected] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(1350), + [sym_comment] = ACTIONS(34), }, [536] = { - [aux_sym_parameter_types_repeat1] = STATE(790), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym_guard] = STATE(805), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_EQ_GT] = ACTIONS(1352), + [anon_sym_COLON] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), + [anon_sym_if] = ACTIONS(1356), + [sym_comment] = ACTIONS(34), }, [537] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1324), - [anon_sym_package] = ACTIONS(1326), - [anon_sym_import] = ACTIONS(1326), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_object] = ACTIONS(1326), - [anon_sym_class] = ACTIONS(1326), - [anon_sym_trait] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(1326), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_def] = ACTIONS(1326), - [anon_sym_abstract] = ACTIONS(1326), - [anon_sym_final] = ACTIONS(1326), - [anon_sym_sealed] = ACTIONS(1326), - [anon_sym_implicit] = ACTIONS(1326), - [anon_sym_lazy] = ACTIONS(1326), - [anon_sym_override] = ACTIONS(1326), - [anon_sym_private] = ACTIONS(1326), - [anon_sym_protected] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [sym_guard] = STATE(805), + [anon_sym_EQ_GT] = ACTIONS(1352), + [anon_sym_COLON] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(140), + [anon_sym_if] = ACTIONS(1356), + [sym_comment] = ACTIONS(34), }, [538] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [anon_sym_package] = ACTIONS(1330), - [anon_sym_import] = ACTIONS(1330), - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [anon_sym_class] = ACTIONS(1330), - [anon_sym_trait] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_val] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_var] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_def] = ACTIONS(1330), - [anon_sym_abstract] = ACTIONS(1330), - [anon_sym_final] = ACTIONS(1330), - [anon_sym_sealed] = ACTIONS(1330), - [anon_sym_implicit] = ACTIONS(1330), - [anon_sym_lazy] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1130), + [anon_sym_package] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), + [anon_sym_class] = ACTIONS(1358), + [anon_sym_trait] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_val] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_var] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_def] = ACTIONS(1358), + [anon_sym_abstract] = ACTIONS(1358), + [anon_sym_final] = ACTIONS(1358), + [anon_sym_sealed] = ACTIONS(1358), + [anon_sym_implicit] = ACTIONS(1358), + [anon_sym_lazy] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), }, [539] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(792), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1334), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [540] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(796), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_LF] = ACTIONS(1366), + [sym_comment] = ACTIONS(464), }, [541] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [anon_sym_package] = ACTIONS(1342), - [anon_sym_import] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_class] = ACTIONS(1342), - [anon_sym_trait] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_val] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_var] = ACTIONS(1342), - [anon_sym_type] = ACTIONS(1342), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_final] = ACTIONS(1342), - [anon_sym_sealed] = ACTIONS(1342), - [anon_sym_implicit] = ACTIONS(1342), - [anon_sym_lazy] = ACTIONS(1342), - [anon_sym_override] = ACTIONS(1342), - [anon_sym_private] = ACTIONS(1342), - [anon_sym_protected] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1368), + [anon_sym_package] = ACTIONS(1370), + [anon_sym_import] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_object] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(1370), + [anon_sym_trait] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_val] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_def] = ACTIONS(1370), + [anon_sym_abstract] = ACTIONS(1370), + [anon_sym_final] = ACTIONS(1370), + [anon_sym_sealed] = ACTIONS(1370), + [anon_sym_implicit] = ACTIONS(1370), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_override] = ACTIONS(1370), + [anon_sym_private] = ACTIONS(1370), + [anon_sym_protected] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), }, [542] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1346), - [anon_sym_package] = ACTIONS(1348), - [anon_sym_import] = ACTIONS(1348), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_object] = ACTIONS(1348), - [anon_sym_class] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(1348), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_var] = ACTIONS(1348), - [anon_sym_type] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1348), - [anon_sym_abstract] = ACTIONS(1348), - [anon_sym_final] = ACTIONS(1348), - [anon_sym_sealed] = ACTIONS(1348), - [anon_sym_implicit] = ACTIONS(1348), - [anon_sym_lazy] = ACTIONS(1348), - [anon_sym_override] = ACTIONS(1348), - [anon_sym_private] = ACTIONS(1348), - [anon_sym_protected] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [sym_stable_type_identifier] = STATE(32), + [sym_stable_identifier] = STATE(33), + [sym_case_class_pattern] = STATE(537), + [sym_alternative_pattern] = STATE(537), + [sym_typed_pattern] = STATE(537), + [sym_tuple_pattern] = STATE(537), + [sym_parenthesized_pattern] = STATE(537), + [sym_wildcard] = STATE(537), + [sym_string] = STATE(537), + [sym__simple_string] = ACTIONS(50), + [sym__string_start] = ACTIONS(52), + [sym__multiline_string_start] = ACTIONS(54), + [anon_sym__] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(58), + [sym_identifier] = ACTIONS(930), + [sym_number] = ACTIONS(932), + [sym_comment] = ACTIONS(34), }, [543] = { - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_EQ_GT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1376), [sym_comment] = ACTIONS(34), }, [544] = { - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_with] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(589), - [sym_operator_identifier] = ACTIONS(589), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(809), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(1379), + [sym_comment] = ACTIONS(34), }, [545] = { - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(810), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(1379), + [sym_comment] = ACTIONS(34), }, [546] = { - [aux_sym_parameter_types_repeat1] = STATE(798), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1356), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(665), + [anon_sym_match] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [547] = { - [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_EQ] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(813), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_LF] = ACTIONS(1383), + [sym_comment] = ACTIONS(464), }, [548] = { - [anon_sym_COLON] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(813), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_LF] = ACTIONS(1383), + [sym_comment] = ACTIONS(464), }, [549] = { - [anon_sym_COLON] = ACTIONS(1189), - [anon_sym_EQ] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(1189), - [sym_identifier] = ACTIONS(589), - [sym_operator_identifier] = ACTIONS(589), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [550] = { - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_EQ_GT] = ACTIONS(1358), - [anon_sym_COLON] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1360), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(816), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [551] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1362), - [anon_sym_package] = ACTIONS(1364), - [anon_sym_import] = ACTIONS(1364), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_object] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1364), - [anon_sym_trait] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(1364), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(1364), - [anon_sym_type] = ACTIONS(1364), - [anon_sym_def] = ACTIONS(1364), - [anon_sym_abstract] = ACTIONS(1364), - [anon_sym_final] = ACTIONS(1364), - [anon_sym_sealed] = ACTIONS(1364), - [anon_sym_implicit] = ACTIONS(1364), - [anon_sym_lazy] = ACTIONS(1364), - [anon_sym_override] = ACTIONS(1364), - [anon_sym_private] = ACTIONS(1364), - [anon_sym_protected] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(826), + [sym__expression] = STATE(827), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), }, [552] = { - [ts_builtin_sym_end] = ACTIONS(500), - [anon_sym_package] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_def] = ACTIONS(1159), - [anon_sym_abstract] = ACTIONS(1159), - [anon_sym_final] = ACTIONS(1159), - [anon_sym_sealed] = ACTIONS(1159), - [anon_sym_implicit] = ACTIONS(1159), - [anon_sym_lazy] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1159), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_match] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [553] = { - [aux_sym_parameter_types_repeat1] = STATE(800), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1366), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_match] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [554] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [anon_sym_package] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_object] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_trait] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_def] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_final] = ACTIONS(1177), - [anon_sym_sealed] = ACTIONS(1177), - [anon_sym_implicit] = ACTIONS(1177), - [anon_sym_lazy] = ACTIONS(1177), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1177), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [555] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_trait] = ACTIONS(1183), - [anon_sym_val] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_def] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_implicit] = ACTIONS(1183), - [anon_sym_lazy] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1183), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(1409), + [sym_comment] = ACTIONS(34), }, [556] = { - [ts_builtin_sym_end] = ACTIONS(1187), - [anon_sym_package] = ACTIONS(1189), - [anon_sym_import] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_object] = ACTIONS(1189), - [anon_sym_class] = ACTIONS(1189), - [anon_sym_trait] = ACTIONS(1189), - [anon_sym_val] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_abstract] = ACTIONS(1189), - [anon_sym_final] = ACTIONS(1189), - [anon_sym_sealed] = ACTIONS(1189), - [anon_sym_implicit] = ACTIONS(1189), - [anon_sym_lazy] = ACTIONS(1189), - [anon_sym_override] = ACTIONS(1189), - [anon_sym_private] = ACTIONS(1189), - [anon_sym_protected] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(617), - [sym_identifier] = ACTIONS(619), - [sym_operator_identifier] = ACTIONS(621), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(829), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [557] = { - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_LF] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(830), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [558] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(1368), + [sym_block] = STATE(340), + [sym__expression] = STATE(831), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [559] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(1368), + [sym_block] = STATE(340), + [sym__expression] = STATE(833), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [560] = { - [sym_identifier] = ACTIONS(1370), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1413), + [anon_sym_package] = ACTIONS(1415), + [anon_sym_import] = ACTIONS(1415), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_object] = ACTIONS(1415), + [anon_sym_class] = ACTIONS(1415), + [anon_sym_trait] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_val] = ACTIONS(1415), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1415), + [anon_sym_def] = ACTIONS(1415), + [anon_sym_abstract] = ACTIONS(1415), + [anon_sym_final] = ACTIONS(1415), + [anon_sym_sealed] = ACTIONS(1415), + [anon_sym_implicit] = ACTIONS(1415), + [anon_sym_lazy] = ACTIONS(1415), + [anon_sym_override] = ACTIONS(1415), + [anon_sym_private] = ACTIONS(1415), + [anon_sym_protected] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), }, [561] = { - [sym_import_selectors] = STATE(805), - [sym_wildcard] = STATE(805), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym__] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), + [sym_case_block] = STATE(835), + [anon_sym_LBRACE] = ACTIONS(1419), [sym_comment] = ACTIONS(34), }, [562] = { - [anon_sym_DOT] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_LF] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(836), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [563] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [564] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_LF] = ACTIONS(1382), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(837), + [sym_case_block] = STATE(837), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [565] = { - [sym_template_body] = STATE(808), - [anon_sym_LBRACE] = ACTIONS(1000), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(1423), [sym_comment] = ACTIONS(34), }, [566] = { - [sym_type_parameters] = STATE(809), - [sym_template_body] = STATE(810), - [sym_extends_clause] = STATE(811), - [sym_class_parameters] = STATE(812), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_extends] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_LF] = ACTIONS(1384), - [sym_comment] = ACTIONS(432), + [sym_parenthesized_expression] = STATE(840), + [anon_sym_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(34), }, [567] = { - [sym_package_clause] = STATE(14), - [sym_import_declaration] = STATE(14), - [sym_object_definition] = STATE(14), - [sym_class_definition] = STATE(14), - [sym_trait_definition] = STATE(14), - [sym_val_definition] = STATE(14), - [sym_val_declaration] = STATE(14), - [sym_var_declaration] = STATE(14), - [sym_var_definition] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_function_definition] = STATE(14), - [sym_function_declaration] = STATE(14), - [sym_modifiers] = STATE(105), - [aux_sym_compilation_unit_repeat1] = STATE(814), - [aux_sym_modifiers_repeat1] = STATE(17), - [anon_sym_package] = ACTIONS(12), - [anon_sym_import] = ACTIONS(14), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(214), - [anon_sym_object] = ACTIONS(18), - [anon_sym_class] = ACTIONS(216), - [anon_sym_trait] = ACTIONS(22), - [anon_sym_val] = ACTIONS(218), - [anon_sym_var] = ACTIONS(220), - [anon_sym_type] = ACTIONS(222), - [anon_sym_def] = ACTIONS(224), - [anon_sym_abstract] = ACTIONS(32), - [anon_sym_final] = ACTIONS(32), - [anon_sym_sealed] = ACTIONS(32), - [anon_sym_implicit] = ACTIONS(32), - [anon_sym_lazy] = ACTIONS(32), - [anon_sym_override] = ACTIONS(32), - [anon_sym_private] = ACTIONS(32), - [anon_sym_protected] = ACTIONS(32), + [sym_block] = STATE(340), + [sym__expression] = STATE(552), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(962), + [anon_sym_new] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [568] = { - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_LF] = ACTIONS(1388), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(553), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(962), + [anon_sym_new] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [569] = { - [sym__type_parameter] = STATE(815), - [anon_sym__] = ACTIONS(228), - [sym_identifier] = ACTIONS(230), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(1429), + [sym_operator_identifier] = ACTIONS(1429), + [sym_comment] = ACTIONS(464), }, [570] = { - [sym__type] = STATE(817), - [sym_compound_type] = STATE(818), - [sym_infix_type] = STATE(818), - [sym_stable_type_identifier] = STATE(819), - [sym_stable_identifier] = STATE(820), - [sym_generic_type] = STATE(818), - [sym_function_type] = STATE(818), - [sym_parameter_types] = STATE(821), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1390), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(114), + [anon_sym_package] = ACTIONS(116), + [anon_sym_import] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_case] = ACTIONS(116), + [anon_sym_object] = ACTIONS(116), + [anon_sym_class] = ACTIONS(116), + [anon_sym_trait] = ACTIONS(116), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_val] = ACTIONS(116), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_var] = ACTIONS(116), + [anon_sym_type] = ACTIONS(116), + [anon_sym_def] = ACTIONS(116), + [anon_sym_abstract] = ACTIONS(116), + [anon_sym_final] = ACTIONS(116), + [anon_sym_sealed] = ACTIONS(116), + [anon_sym_implicit] = ACTIONS(116), + [anon_sym_lazy] = ACTIONS(116), + [anon_sym_override] = ACTIONS(116), + [anon_sym_private] = ACTIONS(116), + [anon_sym_protected] = ACTIONS(116), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_else] = ACTIONS(116), + [anon_sym_match] = ACTIONS(116), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [571] = { - [sym_class_parameter] = STATE(823), - [anon_sym_val] = ACTIONS(236), - [anon_sym_var] = ACTIONS(236), - [anon_sym_RPAREN] = ACTIONS(1392), - [sym_identifier] = ACTIONS(240), + [sym_interpolation] = STATE(844), + [anon_sym_DOLLAR] = ACTIONS(118), [sym_comment] = ACTIONS(34), }, [572] = { - [sym_template_body] = STATE(810), - [sym_extends_clause] = STATE(811), - [sym_class_parameters] = STATE(812), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_extends] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_LF] = ACTIONS(1384), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(845), + [anon_sym_DOLLAR] = ACTIONS(120), + [sym_comment] = ACTIONS(34), }, [573] = { - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_LF] = ACTIONS(1384), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(847), + [sym_import_declaration] = STATE(847), + [sym_object_definition] = STATE(847), + [sym_class_definition] = STATE(847), + [sym_trait_definition] = STATE(847), + [sym_val_definition] = STATE(847), + [sym_val_declaration] = STATE(847), + [sym_var_declaration] = STATE(847), + [sym_var_definition] = STATE(847), + [sym_type_definition] = STATE(847), + [sym_function_definition] = STATE(847), + [sym_function_declaration] = STATE(847), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(848), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(849), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [574] = { - [sym_template_body] = STATE(810), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_LF] = ACTIONS(1384), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(850), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [575] = { - [sym_template_body] = STATE(810), - [sym_extends_clause] = STATE(811), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_extends] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_LF] = ACTIONS(1384), - [sym_comment] = ACTIONS(432), + [sym_parenthesized_expression] = STATE(851), + [anon_sym_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(34), }, [576] = { - [sym_template_body] = STATE(824), - [sym_extends_clause] = STATE(825), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_extends] = ACTIONS(108), + [sym_block] = STATE(579), + [sym__expression] = STATE(852), + [sym_if_expression] = STATE(579), + [sym_match_expression] = STATE(579), + [sym_case_block] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_generic_function] = STATE(579), + [sym_call_expression] = STATE(579), + [sym_field_expression] = STATE(579), + [sym_instance_expression] = STATE(579), + [sym_infix_expression] = STATE(579), + [sym_prefix_expression] = STATE(579), + [sym_tuple_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(579), + [sym_string_transform_expression] = STATE(579), + [sym_string] = STATE(579), + [sym__simple_string] = ACTIONS(968), + [sym__string_start] = ACTIONS(970), + [sym__multiline_string_start] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_if] = ACTIONS(978), + [anon_sym_new] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [sym_number] = ACTIONS(986), [sym_comment] = ACTIONS(34), }, [577] = { - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_LF] = ACTIONS(1394), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(579), + [sym__expression] = STATE(853), + [sym_if_expression] = STATE(579), + [sym_match_expression] = STATE(579), + [sym_case_block] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_generic_function] = STATE(579), + [sym_call_expression] = STATE(579), + [sym_field_expression] = STATE(579), + [sym_instance_expression] = STATE(579), + [sym_infix_expression] = STATE(579), + [sym_prefix_expression] = STATE(579), + [sym_tuple_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(579), + [sym_string_transform_expression] = STATE(579), + [sym_string] = STATE(579), + [sym__simple_string] = ACTIONS(968), + [sym__string_start] = ACTIONS(970), + [sym__multiline_string_start] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_if] = ACTIONS(978), + [anon_sym_new] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [sym_number] = ACTIONS(986), + [sym_comment] = ACTIONS(34), }, [578] = { - [sym_template_body] = STATE(824), - [anon_sym_LBRACE] = ACTIONS(1000), - [sym_comment] = ACTIONS(34), + [sym_string] = STATE(854), + [sym__simple_string] = ACTIONS(968), + [sym__string_start] = ACTIONS(970), + [sym__multiline_string_start] = ACTIONS(972), + [ts_builtin_sym_end] = ACTIONS(582), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_case] = ACTIONS(584), + [anon_sym_object] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_val] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_var] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_def] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_implicit] = ACTIONS(584), + [anon_sym_lazy] = ACTIONS(584), + [anon_sym_override] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_else] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [579] = { - [sym__type] = STATE(827), - [sym_compound_type] = STATE(828), - [sym_infix_type] = STATE(828), - [sym_stable_type_identifier] = STATE(829), - [sym_stable_identifier] = STATE(830), - [sym_generic_type] = STATE(828), - [sym_function_type] = STATE(828), - [sym_parameter_types] = STATE(831), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1396), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(582), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_case] = ACTIONS(584), + [anon_sym_object] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_val] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_var] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_def] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_implicit] = ACTIONS(584), + [anon_sym_lazy] = ACTIONS(584), + [anon_sym_override] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_else] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [580] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(832), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(862), + [sym_arguments] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(1433), + [anon_sym_package] = ACTIONS(1435), + [anon_sym_import] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_object] = ACTIONS(1435), + [anon_sym_class] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_val] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_abstract] = ACTIONS(1435), + [anon_sym_final] = ACTIONS(1435), + [anon_sym_sealed] = ACTIONS(1435), + [anon_sym_implicit] = ACTIONS(1435), + [anon_sym_lazy] = ACTIONS(1435), + [anon_sym_override] = ACTIONS(1435), + [anon_sym_private] = ACTIONS(1435), + [anon_sym_protected] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_match] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), + [sym_operator_identifier] = ACTIONS(1449), + [sym_comment] = ACTIONS(464), }, [581] = { - [aux_sym_val_declaration_repeat1] = STATE(166), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(1398), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1451), + [anon_sym_package] = ACTIONS(1453), + [anon_sym_import] = ACTIONS(1453), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_case] = ACTIONS(1453), + [anon_sym_object] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1453), + [anon_sym_trait] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_val] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_abstract] = ACTIONS(1453), + [anon_sym_final] = ACTIONS(1453), + [anon_sym_sealed] = ACTIONS(1453), + [anon_sym_implicit] = ACTIONS(1453), + [anon_sym_lazy] = ACTIONS(1453), + [anon_sym_override] = ACTIONS(1453), + [anon_sym_private] = ACTIONS(1453), + [anon_sym_protected] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), }, [582] = { - [sym__type] = STATE(834), - [sym_compound_type] = STATE(169), - [sym_infix_type] = STATE(169), - [sym_stable_type_identifier] = STATE(170), - [sym_stable_identifier] = STATE(171), - [sym_generic_type] = STATE(169), - [sym_function_type] = STATE(169), - [sym_parameter_types] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(304), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(865), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1457), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [583] = { - [sym__type] = STATE(835), - [sym_compound_type] = STATE(828), - [sym_infix_type] = STATE(828), - [sym_stable_type_identifier] = STATE(829), - [sym_stable_identifier] = STATE(830), - [sym_generic_type] = STATE(828), - [sym_function_type] = STATE(828), - [sym_parameter_types] = STATE(831), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1396), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(1459), + [anon_sym_package] = ACTIONS(1461), + [anon_sym_import] = ACTIONS(1461), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_object] = ACTIONS(1461), + [anon_sym_class] = ACTIONS(1461), + [anon_sym_trait] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(1461), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1461), + [anon_sym_def] = ACTIONS(1461), + [anon_sym_abstract] = ACTIONS(1461), + [anon_sym_final] = ACTIONS(1461), + [anon_sym_sealed] = ACTIONS(1461), + [anon_sym_implicit] = ACTIONS(1461), + [anon_sym_lazy] = ACTIONS(1461), + [anon_sym_override] = ACTIONS(1461), + [anon_sym_private] = ACTIONS(1461), + [anon_sym_protected] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [584] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(836), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1463), + [anon_sym_package] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_object] = ACTIONS(1465), + [anon_sym_class] = ACTIONS(1465), + [anon_sym_trait] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_val] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1465), + [anon_sym_abstract] = ACTIONS(1465), + [anon_sym_final] = ACTIONS(1465), + [anon_sym_sealed] = ACTIONS(1465), + [anon_sym_implicit] = ACTIONS(1465), + [anon_sym_lazy] = ACTIONS(1465), + [anon_sym_override] = ACTIONS(1465), + [anon_sym_private] = ACTIONS(1465), + [anon_sym_protected] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), }, [585] = { - [aux_sym_val_declaration_repeat1] = STATE(166), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_COLON] = ACTIONS(1400), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(867), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1469), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [586] = { - [sym__type] = STATE(838), - [sym_compound_type] = STATE(169), - [sym_infix_type] = STATE(169), - [sym_stable_type_identifier] = STATE(170), - [sym_stable_identifier] = STATE(171), - [sym_generic_type] = STATE(169), - [sym_function_type] = STATE(169), - [sym_parameter_types] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(304), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(330), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_case] = ACTIONS(942), [sym_comment] = ACTIONS(34), }, [587] = { - [sym__type] = STATE(840), - [sym_compound_type] = STATE(841), - [sym_infix_type] = STATE(841), - [sym_stable_type_identifier] = STATE(842), - [sym_stable_identifier] = STATE(843), - [sym_generic_type] = STATE(841), - [sym_function_type] = STATE(841), - [sym_parameter_types] = STATE(844), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1402), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1473), + [anon_sym_package] = ACTIONS(1475), + [anon_sym_import] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_case] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [anon_sym_class] = ACTIONS(1475), + [anon_sym_trait] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_val] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_var] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1475), + [anon_sym_abstract] = ACTIONS(1475), + [anon_sym_final] = ACTIONS(1475), + [anon_sym_sealed] = ACTIONS(1475), + [anon_sym_implicit] = ACTIONS(1475), + [anon_sym_lazy] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), }, [588] = { - [anon_sym_EQ] = ACTIONS(1404), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(1479), + [anon_sym_package] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_object] = ACTIONS(1481), + [anon_sym_class] = ACTIONS(1481), + [anon_sym_trait] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_type] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_abstract] = ACTIONS(1481), + [anon_sym_final] = ACTIONS(1481), + [anon_sym_sealed] = ACTIONS(1481), + [anon_sym_implicit] = ACTIONS(1481), + [anon_sym_lazy] = ACTIONS(1481), + [anon_sym_override] = ACTIONS(1481), + [anon_sym_private] = ACTIONS(1481), + [anon_sym_protected] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), }, [589] = { - [sym_package_clause] = STATE(847), - [sym_import_declaration] = STATE(847), - [sym_object_definition] = STATE(847), - [sym_class_definition] = STATE(847), - [sym_trait_definition] = STATE(847), - [sym_val_definition] = STATE(847), - [sym_val_declaration] = STATE(847), - [sym_var_declaration] = STATE(847), - [sym_var_definition] = STATE(847), - [sym_type_definition] = STATE(847), - [sym_function_definition] = STATE(847), - [sym_function_declaration] = STATE(847), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(848), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1485), + [anon_sym_package] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_case] = ACTIONS(1487), + [anon_sym_object] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1487), + [anon_sym_trait] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_val] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_var] = ACTIONS(1487), + [anon_sym_type] = ACTIONS(1487), + [anon_sym_def] = ACTIONS(1487), + [anon_sym_abstract] = ACTIONS(1487), + [anon_sym_final] = ACTIONS(1487), + [anon_sym_sealed] = ACTIONS(1487), + [anon_sym_implicit] = ACTIONS(1487), + [anon_sym_lazy] = ACTIONS(1487), + [anon_sym_override] = ACTIONS(1487), + [anon_sym_private] = ACTIONS(1487), + [anon_sym_protected] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), }, [590] = { - [sym__type] = STATE(850), - [sym_compound_type] = STATE(851), - [sym_infix_type] = STATE(851), - [sym_stable_type_identifier] = STATE(852), - [sym_stable_identifier] = STATE(853), - [sym_generic_type] = STATE(851), - [sym_function_type] = STATE(851), - [sym_parameter_types] = STATE(854), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_EQ_GT] = ACTIONS(1491), + [anon_sym_COLON] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), [sym_comment] = ACTIONS(34), }, [591] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(855), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(544), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [592] = { - [sym_parameter] = STATE(857), - [anon_sym_RPAREN] = ACTIONS(1410), - [sym_identifier] = ACTIONS(366), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_with] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [593] = { - [sym_parameters] = STATE(860), - [sym_block] = STATE(861), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_LF] = ACTIONS(1412), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(870), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1495), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [594] = { - [sym_block] = STATE(861), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_LF] = ACTIONS(1412), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [595] = { - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_LF] = ACTIONS(1418), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [596] = { - [anon_sym_DOT] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(1303), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [597] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1497), + [anon_sym_EQ_GT] = ACTIONS(1497), + [anon_sym_COLON] = ACTIONS(1497), + [anon_sym_EQ] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), [sym_comment] = ACTIONS(34), }, [598] = { - [anon_sym_DOT] = ACTIONS(522), - [anon_sym_RBRACE] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_else] = ACTIONS(522), - [anon_sym_match] = ACTIONS(522), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [anon_sym_SEMI] = ACTIONS(522), - [anon_sym_LF] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(1501), + [anon_sym_package] = ACTIONS(1503), + [anon_sym_import] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(1503), + [anon_sym_object] = ACTIONS(1503), + [anon_sym_class] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(1503), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_def] = ACTIONS(1503), + [anon_sym_abstract] = ACTIONS(1503), + [anon_sym_final] = ACTIONS(1503), + [anon_sym_sealed] = ACTIONS(1503), + [anon_sym_implicit] = ACTIONS(1503), + [anon_sym_lazy] = ACTIONS(1503), + [anon_sym_override] = ACTIONS(1503), + [anon_sym_private] = ACTIONS(1503), + [anon_sym_protected] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [599] = { - [sym_interpolation] = STATE(863), - [anon_sym_DOLLAR] = ACTIONS(114), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(532), + [anon_sym_package] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [anon_sym_class] = ACTIONS(1273), + [anon_sym_trait] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_val] = ACTIONS(1273), + [anon_sym_var] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1273), + [anon_sym_abstract] = ACTIONS(1273), + [anon_sym_final] = ACTIONS(1273), + [anon_sym_sealed] = ACTIONS(1273), + [anon_sym_implicit] = ACTIONS(1273), + [anon_sym_lazy] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_with] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1273), + [sym_comment] = ACTIONS(464), }, [600] = { - [sym_interpolation] = STATE(864), - [anon_sym_DOLLAR] = ACTIONS(116), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(872), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1505), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [601] = { - [sym_package_clause] = STATE(866), - [sym_import_declaration] = STATE(866), - [sym_object_definition] = STATE(866), - [sym_class_definition] = STATE(866), - [sym_trait_definition] = STATE(866), - [sym_val_definition] = STATE(866), - [sym_val_declaration] = STATE(866), - [sym_var_declaration] = STATE(866), - [sym_var_definition] = STATE(866), - [sym_type_definition] = STATE(866), - [sym_function_definition] = STATE(866), - [sym_function_declaration] = STATE(866), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(867), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1289), + [anon_sym_package] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_object] = ACTIONS(1291), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_val] = ACTIONS(1291), + [anon_sym_var] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(1291), + [anon_sym_final] = ACTIONS(1291), + [anon_sym_sealed] = ACTIONS(1291), + [anon_sym_implicit] = ACTIONS(1291), + [anon_sym_lazy] = ACTIONS(1291), + [anon_sym_override] = ACTIONS(1291), + [anon_sym_private] = ACTIONS(1291), + [anon_sym_protected] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1291), + [sym_comment] = ACTIONS(464), }, [602] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(868), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1295), + [anon_sym_package] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_object] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(1297), + [anon_sym_trait] = ACTIONS(1297), + [anon_sym_val] = ACTIONS(1297), + [anon_sym_var] = ACTIONS(1297), + [anon_sym_type] = ACTIONS(1297), + [anon_sym_def] = ACTIONS(1297), + [anon_sym_abstract] = ACTIONS(1297), + [anon_sym_final] = ACTIONS(1297), + [anon_sym_sealed] = ACTIONS(1297), + [anon_sym_implicit] = ACTIONS(1297), + [anon_sym_lazy] = ACTIONS(1297), + [anon_sym_override] = ACTIONS(1297), + [anon_sym_private] = ACTIONS(1297), + [anon_sym_protected] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1297), + [sym_comment] = ACTIONS(464), }, [603] = { - [sym_parenthesized_expression] = STATE(869), - [anon_sym_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1301), + [anon_sym_package] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_object] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_val] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_sealed] = ACTIONS(1303), + [anon_sym_implicit] = ACTIONS(1303), + [anon_sym_lazy] = ACTIONS(1303), + [anon_sym_override] = ACTIONS(1303), + [anon_sym_private] = ACTIONS(1303), + [anon_sym_protected] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [sym_operator_identifier] = ACTIONS(655), + [sym_comment] = ACTIONS(464), }, [604] = { - [sym_block] = STATE(607), - [sym__expression] = STATE(870), - [sym_if_expression] = STATE(607), - [sym_match_expression] = STATE(607), - [sym_assignment_expression] = STATE(607), - [sym_generic_function] = STATE(607), - [sym_call_expression] = STATE(607), - [sym_field_expression] = STATE(607), - [sym_instance_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_tuple_expression] = STATE(607), - [sym_parenthesized_expression] = STATE(607), - [sym_string_transform_expression] = STATE(607), - [sym_string] = STATE(607), - [sym__simple_string] = ACTIONS(1038), - [sym__string_start] = ACTIONS(1040), - [sym__multiline_string_start] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1054), - [sym_number] = ACTIONS(1056), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_match] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LF] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), }, [605] = { - [sym_block] = STATE(607), - [sym__expression] = STATE(871), - [sym_if_expression] = STATE(607), - [sym_match_expression] = STATE(607), - [sym_assignment_expression] = STATE(607), - [sym_generic_function] = STATE(607), - [sym_call_expression] = STATE(607), - [sym_field_expression] = STATE(607), - [sym_instance_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_tuple_expression] = STATE(607), - [sym_parenthesized_expression] = STATE(607), - [sym_string_transform_expression] = STATE(607), - [sym_string] = STATE(607), - [sym__simple_string] = ACTIONS(1038), - [sym__string_start] = ACTIONS(1040), - [sym__multiline_string_start] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1054), - [sym_number] = ACTIONS(1056), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(1507), [sym_comment] = ACTIONS(34), }, [606] = { - [sym_string] = STATE(872), - [sym__simple_string] = ACTIONS(1038), - [sym__string_start] = ACTIONS(1040), - [sym__multiline_string_start] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(552), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_LF] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(1507), + [sym_comment] = ACTIONS(34), }, [607] = { - [anon_sym_DOT] = ACTIONS(552), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_LF] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_import_selectors] = STATE(877), + [sym_wildcard] = STATE(877), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym__] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1513), + [sym_comment] = ACTIONS(34), }, [608] = { - [sym_type_arguments] = STATE(880), - [sym_arguments] = STATE(881), - [anon_sym_DOT] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [sym_operator_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1426), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_match] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_LF] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), }, [609] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_package] = ACTIONS(1440), - [anon_sym_import] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_object] = ACTIONS(1440), - [anon_sym_class] = ACTIONS(1440), - [anon_sym_trait] = ACTIONS(1440), - [anon_sym_val] = ACTIONS(1440), - [anon_sym_var] = ACTIONS(1440), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_def] = ACTIONS(1440), - [anon_sym_abstract] = ACTIONS(1440), - [anon_sym_final] = ACTIONS(1440), - [anon_sym_sealed] = ACTIONS(1440), - [anon_sym_implicit] = ACTIONS(1440), - [anon_sym_lazy] = ACTIONS(1440), - [anon_sym_override] = ACTIONS(1440), - [anon_sym_private] = ACTIONS(1440), - [anon_sym_protected] = ACTIONS(1440), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [610] = { - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_LF] = ACTIONS(1442), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_LF] = ACTIONS(1519), + [sym_comment] = ACTIONS(464), }, [611] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_LF] = ACTIONS(1442), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_match] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_LF] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), }, [612] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), + [sym_template_body] = STATE(880), + [anon_sym_LBRACE] = ACTIONS(1072), + [sym_comment] = ACTIONS(34), + }, + [613] = { + [sym_type_parameters] = STATE(881), + [sym_template_body] = STATE(882), + [sym_extends_clause] = STATE(883), + [sym_class_parameters] = STATE(884), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_extends] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_LF] = ACTIONS(1521), + [sym_comment] = ACTIONS(464), + }, + [614] = { + [sym_package_clause] = STATE(14), + [sym_import_declaration] = STATE(14), + [sym_object_definition] = STATE(14), + [sym_class_definition] = STATE(14), + [sym_trait_definition] = STATE(14), + [sym_val_definition] = STATE(14), + [sym_val_declaration] = STATE(14), + [sym_var_declaration] = STATE(14), + [sym_var_definition] = STATE(14), + [sym_type_definition] = STATE(14), + [sym_function_definition] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_modifiers] = STATE(111), + [aux_sym_compilation_unit_repeat1] = STATE(886), [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), - }, - [613] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_LF] = ACTIONS(1446), - [sym_comment] = ACTIONS(432), - }, - [614] = { - [sym_identifier] = ACTIONS(1449), + [anon_sym_package] = ACTIONS(12), + [anon_sym_import] = ACTIONS(14), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_case] = ACTIONS(226), + [anon_sym_object] = ACTIONS(18), + [anon_sym_class] = ACTIONS(228), + [anon_sym_trait] = ACTIONS(22), + [anon_sym_val] = ACTIONS(230), + [anon_sym_var] = ACTIONS(232), + [anon_sym_type] = ACTIONS(234), + [anon_sym_def] = ACTIONS(236), + [anon_sym_abstract] = ACTIONS(32), + [anon_sym_final] = ACTIONS(32), + [anon_sym_sealed] = ACTIONS(32), + [anon_sym_implicit] = ACTIONS(32), + [anon_sym_lazy] = ACTIONS(32), + [anon_sym_override] = ACTIONS(32), + [anon_sym_private] = ACTIONS(32), + [anon_sym_protected] = ACTIONS(32), [sym_comment] = ACTIONS(34), }, [615] = { - [sym_type_parameters] = STATE(885), - [sym_parameters] = STATE(860), - [sym_block] = STATE(861), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_LF] = ACTIONS(1412), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_LF] = ACTIONS(1525), + [sym_comment] = ACTIONS(464), }, [616] = { - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [sym__type_parameter] = STATE(887), + [anon_sym__] = ACTIONS(240), + [sym_identifier] = ACTIONS(242), + [sym_comment] = ACTIONS(34), }, [617] = { - [aux_sym_parameter_types_repeat1] = STATE(887), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1451), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(889), + [sym_compound_type] = STATE(890), + [sym_infix_type] = STATE(890), + [sym_stable_type_identifier] = STATE(891), + [sym_stable_identifier] = STATE(892), + [sym_generic_type] = STATE(890), + [sym_function_type] = STATE(890), + [sym_parameter_types] = STATE(893), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1527), + [sym_comment] = ACTIONS(34), }, [618] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(1453), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_LF] = ACTIONS(1453), - [sym_comment] = ACTIONS(432), + [sym_class_parameter] = STATE(895), + [anon_sym_val] = ACTIONS(248), + [anon_sym_var] = ACTIONS(248), + [anon_sym_RPAREN] = ACTIONS(1529), + [sym_identifier] = ACTIONS(252), + [sym_comment] = ACTIONS(34), }, [619] = { - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_EQ] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(882), + [sym_extends_clause] = STATE(883), + [sym_class_parameters] = STATE(884), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_extends] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_LF] = ACTIONS(1521), + [sym_comment] = ACTIONS(464), }, [620] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(889), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_LF] = ACTIONS(1521), + [sym_comment] = ACTIONS(464), }, [621] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(891), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [sym_template_body] = STATE(882), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_LF] = ACTIONS(1521), + [sym_comment] = ACTIONS(464), }, [622] = { - [anon_sym_DOT] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_EQ] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_match] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_LF] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(882), + [sym_extends_clause] = STATE(883), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_extends] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_LF] = ACTIONS(1521), + [sym_comment] = ACTIONS(464), }, [623] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(896), + [sym_extends_clause] = STATE(897), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_extends] = ACTIONS(112), + [sym_comment] = ACTIONS(34), }, [624] = { - [ts_builtin_sym_end] = ACTIONS(500), - [anon_sym_package] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_def] = ACTIONS(1159), - [anon_sym_abstract] = ACTIONS(1159), - [anon_sym_final] = ACTIONS(1159), - [anon_sym_sealed] = ACTIONS(1159), - [anon_sym_implicit] = ACTIONS(1159), - [anon_sym_lazy] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_LF] = ACTIONS(1531), + [sym_comment] = ACTIONS(464), }, [625] = { - [aux_sym_parameter_types_repeat1] = STATE(893), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1459), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(896), + [anon_sym_LBRACE] = ACTIONS(1072), + [sym_comment] = ACTIONS(34), }, [626] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1461), - [anon_sym_package] = ACTIONS(1463), - [anon_sym_import] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(1463), - [anon_sym_object] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1463), - [anon_sym_trait] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(1463), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_type] = ACTIONS(1463), - [anon_sym_def] = ACTIONS(1463), - [anon_sym_abstract] = ACTIONS(1463), - [anon_sym_final] = ACTIONS(1463), - [anon_sym_sealed] = ACTIONS(1463), - [anon_sym_implicit] = ACTIONS(1463), - [anon_sym_lazy] = ACTIONS(1463), - [anon_sym_override] = ACTIONS(1463), - [anon_sym_private] = ACTIONS(1463), - [anon_sym_protected] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(899), + [sym_compound_type] = STATE(900), + [sym_infix_type] = STATE(900), + [sym_stable_type_identifier] = STATE(901), + [sym_stable_identifier] = STATE(902), + [sym_generic_type] = STATE(900), + [sym_function_type] = STATE(900), + [sym_parameter_types] = STATE(903), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1533), + [sym_comment] = ACTIONS(34), }, [627] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [anon_sym_package] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_object] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_trait] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(1177), - [anon_sym_EQ] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_def] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_final] = ACTIONS(1177), - [anon_sym_sealed] = ACTIONS(1177), - [anon_sym_implicit] = ACTIONS(1177), - [anon_sym_lazy] = ACTIONS(1177), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(213), + [sym__expression] = STATE(904), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [628] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_trait] = ACTIONS(1183), - [anon_sym_val] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_def] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_implicit] = ACTIONS(1183), - [anon_sym_lazy] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1535), + [sym_comment] = ACTIONS(34), }, [629] = { - [ts_builtin_sym_end] = ACTIONS(1187), - [anon_sym_package] = ACTIONS(1189), - [anon_sym_import] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_object] = ACTIONS(1189), - [anon_sym_class] = ACTIONS(1189), - [anon_sym_trait] = ACTIONS(1189), - [anon_sym_val] = ACTIONS(1189), - [anon_sym_EQ] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_abstract] = ACTIONS(1189), - [anon_sym_final] = ACTIONS(1189), - [anon_sym_sealed] = ACTIONS(1189), - [anon_sym_implicit] = ACTIONS(1189), - [anon_sym_lazy] = ACTIONS(1189), - [anon_sym_override] = ACTIONS(1189), - [anon_sym_private] = ACTIONS(1189), - [anon_sym_protected] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(687), - [sym_identifier] = ACTIONS(689), - [sym_operator_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(906), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), + [sym_comment] = ACTIONS(34), }, [630] = { - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_EQ] = ACTIONS(1467), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_with] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1201), - [sym_operator_identifier] = ACTIONS(1201), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(907), + [sym_compound_type] = STATE(900), + [sym_infix_type] = STATE(900), + [sym_stable_type_identifier] = STATE(901), + [sym_stable_identifier] = STATE(902), + [sym_generic_type] = STATE(900), + [sym_function_type] = STATE(900), + [sym_parameter_types] = STATE(903), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1533), + [sym_comment] = ACTIONS(34), }, [631] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(213), + [sym__expression] = STATE(908), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [632] = { - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_RPAREN] = ACTIONS(1469), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1537), [sym_comment] = ACTIONS(34), }, [633] = { - [ts_builtin_sym_end] = ACTIONS(1471), - [anon_sym_package] = ACTIONS(1471), - [anon_sym_import] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_case] = ACTIONS(1471), - [anon_sym_object] = ACTIONS(1471), - [anon_sym_class] = ACTIONS(1471), - [anon_sym_trait] = ACTIONS(1471), - [anon_sym_val] = ACTIONS(1471), - [anon_sym_COLON] = ACTIONS(1471), - [anon_sym_EQ] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_type] = ACTIONS(1471), - [anon_sym_def] = ACTIONS(1471), - [anon_sym_abstract] = ACTIONS(1471), - [anon_sym_final] = ACTIONS(1471), - [anon_sym_sealed] = ACTIONS(1471), - [anon_sym_implicit] = ACTIONS(1471), - [anon_sym_lazy] = ACTIONS(1471), - [anon_sym_override] = ACTIONS(1471), - [anon_sym_private] = ACTIONS(1471), - [anon_sym_protected] = ACTIONS(1471), + [sym__type] = STATE(910), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), [sym_comment] = ACTIONS(34), }, [634] = { - [aux_sym_parameters_repeat1] = STATE(634), - [anon_sym_COMMA] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(1469), + [sym__type] = STATE(912), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), [sym_comment] = ACTIONS(34), }, [635] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(895), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), + [anon_sym_EQ] = ACTIONS(1541), [sym_comment] = ACTIONS(34), }, [636] = { - [ts_builtin_sym_end] = ACTIONS(1461), - [anon_sym_package] = ACTIONS(1461), - [anon_sym_import] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_case] = ACTIONS(1461), - [anon_sym_object] = ACTIONS(1461), - [anon_sym_class] = ACTIONS(1461), - [anon_sym_trait] = ACTIONS(1461), - [anon_sym_val] = ACTIONS(1461), - [anon_sym_var] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1461), - [anon_sym_def] = ACTIONS(1461), - [anon_sym_abstract] = ACTIONS(1461), - [anon_sym_final] = ACTIONS(1461), - [anon_sym_sealed] = ACTIONS(1461), - [anon_sym_implicit] = ACTIONS(1461), - [anon_sym_lazy] = ACTIONS(1461), - [anon_sym_override] = ACTIONS(1461), - [anon_sym_private] = ACTIONS(1461), - [anon_sym_protected] = ACTIONS(1461), + [sym_package_clause] = STATE(919), + [sym_import_declaration] = STATE(919), + [sym_object_definition] = STATE(919), + [sym_class_definition] = STATE(919), + [sym_trait_definition] = STATE(919), + [sym_val_definition] = STATE(919), + [sym_val_declaration] = STATE(919), + [sym_var_declaration] = STATE(919), + [sym_var_definition] = STATE(919), + [sym_type_definition] = STATE(919), + [sym_function_definition] = STATE(919), + [sym_function_declaration] = STATE(919), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(920), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [637] = { - [sym_block] = STATE(897), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_package] = ACTIONS(1478), - [anon_sym_import] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_case] = ACTIONS(1478), - [anon_sym_object] = ACTIONS(1478), - [anon_sym_class] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_val] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1480), - [anon_sym_var] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_def] = ACTIONS(1478), - [anon_sym_abstract] = ACTIONS(1478), - [anon_sym_final] = ACTIONS(1478), - [anon_sym_sealed] = ACTIONS(1478), - [anon_sym_implicit] = ACTIONS(1478), - [anon_sym_lazy] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1478), - [anon_sym_private] = ACTIONS(1478), - [anon_sym_protected] = ACTIONS(1478), - [anon_sym_with] = ACTIONS(687), - [sym_identifier] = ACTIONS(689), - [sym_operator_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(922), + [sym_compound_type] = STATE(923), + [sym_infix_type] = STATE(923), + [sym_stable_type_identifier] = STATE(924), + [sym_stable_identifier] = STATE(925), + [sym_generic_type] = STATE(923), + [sym_function_type] = STATE(923), + [sym_parameter_types] = STATE(926), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1545), + [sym_comment] = ACTIONS(34), }, [638] = { - [sym_template_body] = STATE(645), - [sym_extends_clause] = STATE(898), - [ts_builtin_sym_end] = ACTIONS(1104), - [anon_sym_package] = ACTIONS(1104), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_object] = ACTIONS(1104), - [anon_sym_class] = ACTIONS(1104), - [anon_sym_trait] = ACTIONS(1104), - [anon_sym_val] = ACTIONS(1104), - [anon_sym_var] = ACTIONS(1104), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1104), - [anon_sym_abstract] = ACTIONS(1104), - [anon_sym_final] = ACTIONS(1104), - [anon_sym_sealed] = ACTIONS(1104), - [anon_sym_implicit] = ACTIONS(1104), - [anon_sym_lazy] = ACTIONS(1104), - [anon_sym_override] = ACTIONS(1104), - [anon_sym_private] = ACTIONS(1104), - [anon_sym_protected] = ACTIONS(1104), - [anon_sym_extends] = ACTIONS(104), + [sym_block] = STATE(213), + [sym__expression] = STATE(927), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [639] = { - [sym__type] = STATE(899), - [sym_compound_type] = STATE(213), - [sym_infix_type] = STATE(213), - [sym_stable_type_identifier] = STATE(214), - [sym_stable_identifier] = STATE(215), - [sym_generic_type] = STATE(213), - [sym_function_type] = STATE(213), - [sym_parameter_types] = STATE(216), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(362), + [sym_parameter] = STATE(929), + [anon_sym_RPAREN] = ACTIONS(1547), + [sym_identifier] = ACTIONS(378), [sym_comment] = ACTIONS(34), }, [640] = { - [anon_sym_COMMA] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_EQ_GT] = ACTIONS(717), - [sym_comment] = ACTIONS(34), + [sym_parameters] = STATE(932), + [sym_block] = STATE(933), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_COLON] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_LF] = ACTIONS(1549), + [sym_comment] = ACTIONS(464), }, [641] = { - [anon_sym_COMMA] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(933), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_COLON] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_LF] = ACTIONS(1549), + [sym_comment] = ACTIONS(464), }, [642] = { - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_LF] = ACTIONS(1555), + [sym_comment] = ACTIONS(464), }, [643] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [anon_sym_package] = ACTIONS(1486), - [anon_sym_import] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_object] = ACTIONS(1486), - [anon_sym_class] = ACTIONS(1486), - [anon_sym_trait] = ACTIONS(1486), - [anon_sym_val] = ACTIONS(1486), - [anon_sym_var] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_def] = ACTIONS(1486), - [anon_sym_abstract] = ACTIONS(1486), - [anon_sym_final] = ACTIONS(1486), - [anon_sym_sealed] = ACTIONS(1486), - [anon_sym_implicit] = ACTIONS(1486), - [anon_sym_lazy] = ACTIONS(1486), - [anon_sym_override] = ACTIONS(1486), - [anon_sym_private] = ACTIONS(1486), - [anon_sym_protected] = ACTIONS(1486), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_match] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_LF] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), }, [644] = { - [aux_sym_import_selectors_repeat1] = STATE(644), - [anon_sym_COMMA] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1482), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(1557), [sym_comment] = ACTIONS(34), }, [645] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [anon_sym_package] = ACTIONS(1491), - [anon_sym_import] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_object] = ACTIONS(1491), - [anon_sym_class] = ACTIONS(1491), - [anon_sym_trait] = ACTIONS(1491), - [anon_sym_val] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_def] = ACTIONS(1491), - [anon_sym_abstract] = ACTIONS(1491), - [anon_sym_final] = ACTIONS(1491), - [anon_sym_sealed] = ACTIONS(1491), - [anon_sym_implicit] = ACTIONS(1491), - [anon_sym_lazy] = ACTIONS(1491), - [anon_sym_override] = ACTIONS(1491), - [anon_sym_private] = ACTIONS(1491), - [anon_sym_protected] = ACTIONS(1491), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_else] = ACTIONS(554), + [anon_sym_match] = ACTIONS(554), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LF] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [646] = { - [sym_template_body] = STATE(229), - [sym_extends_clause] = STATE(230), - [sym_class_parameters] = STATE(900), - [anon_sym_package] = ACTIONS(386), - [anon_sym_import] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(386), - [anon_sym_case] = ACTIONS(386), - [anon_sym_object] = ACTIONS(386), - [anon_sym_class] = ACTIONS(386), - [anon_sym_trait] = ACTIONS(386), - [anon_sym_val] = ACTIONS(386), - [anon_sym_var] = ACTIONS(386), - [anon_sym_type] = ACTIONS(386), - [anon_sym_def] = ACTIONS(386), - [anon_sym_abstract] = ACTIONS(386), - [anon_sym_final] = ACTIONS(386), - [anon_sym_sealed] = ACTIONS(386), - [anon_sym_implicit] = ACTIONS(386), - [anon_sym_lazy] = ACTIONS(386), - [anon_sym_override] = ACTIONS(386), - [anon_sym_private] = ACTIONS(386), - [anon_sym_protected] = ACTIONS(386), - [anon_sym_extends] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(106), + [sym_interpolation] = STATE(935), + [anon_sym_DOLLAR] = ACTIONS(118), [sym_comment] = ACTIONS(34), }, [647] = { - [sym_template_body] = STATE(229), - [sym_extends_clause] = STATE(230), - [anon_sym_package] = ACTIONS(386), - [anon_sym_import] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(386), - [anon_sym_case] = ACTIONS(386), - [anon_sym_object] = ACTIONS(386), - [anon_sym_class] = ACTIONS(386), - [anon_sym_trait] = ACTIONS(386), - [anon_sym_val] = ACTIONS(386), - [anon_sym_var] = ACTIONS(386), - [anon_sym_type] = ACTIONS(386), - [anon_sym_def] = ACTIONS(386), - [anon_sym_abstract] = ACTIONS(386), - [anon_sym_final] = ACTIONS(386), - [anon_sym_sealed] = ACTIONS(386), - [anon_sym_implicit] = ACTIONS(386), - [anon_sym_lazy] = ACTIONS(386), - [anon_sym_override] = ACTIONS(386), - [anon_sym_private] = ACTIONS(386), - [anon_sym_protected] = ACTIONS(386), - [anon_sym_extends] = ACTIONS(723), + [sym_interpolation] = STATE(936), + [anon_sym_DOLLAR] = ACTIONS(120), [sym_comment] = ACTIONS(34), }, [648] = { - [sym_type_arguments] = STATE(903), - [anon_sym_package] = ACTIONS(424), - [anon_sym_import] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(424), - [anon_sym_object] = ACTIONS(424), - [anon_sym_class] = ACTIONS(424), - [anon_sym_trait] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_val] = ACTIONS(424), - [anon_sym_var] = ACTIONS(424), - [anon_sym_type] = ACTIONS(424), - [anon_sym_def] = ACTIONS(424), - [anon_sym_abstract] = ACTIONS(424), - [anon_sym_final] = ACTIONS(424), - [anon_sym_sealed] = ACTIONS(424), - [anon_sym_implicit] = ACTIONS(424), - [anon_sym_lazy] = ACTIONS(424), - [anon_sym_override] = ACTIONS(424), - [anon_sym_private] = ACTIONS(424), - [anon_sym_protected] = ACTIONS(424), - [anon_sym_with] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(938), + [sym_import_declaration] = STATE(938), + [sym_object_definition] = STATE(938), + [sym_class_definition] = STATE(938), + [sym_trait_definition] = STATE(938), + [sym_val_definition] = STATE(938), + [sym_val_declaration] = STATE(938), + [sym_var_declaration] = STATE(938), + [sym_var_definition] = STATE(938), + [sym_type_definition] = STATE(938), + [sym_function_definition] = STATE(938), + [sym_function_declaration] = STATE(938), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(939), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(940), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1559), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [649] = { - [anon_sym_package] = ACTIONS(436), - [anon_sym_import] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_case] = ACTIONS(436), - [anon_sym_object] = ACTIONS(436), - [anon_sym_class] = ACTIONS(436), - [anon_sym_trait] = ACTIONS(436), - [anon_sym_val] = ACTIONS(436), - [anon_sym_var] = ACTIONS(436), - [anon_sym_type] = ACTIONS(436), - [anon_sym_def] = ACTIONS(436), - [anon_sym_abstract] = ACTIONS(436), - [anon_sym_final] = ACTIONS(436), - [anon_sym_sealed] = ACTIONS(436), - [anon_sym_implicit] = ACTIONS(436), - [anon_sym_lazy] = ACTIONS(436), - [anon_sym_override] = ACTIONS(436), - [anon_sym_private] = ACTIONS(436), - [anon_sym_protected] = ACTIONS(436), - [anon_sym_with] = ACTIONS(1497), - [sym_identifier] = ACTIONS(1499), - [sym_operator_identifier] = ACTIONS(1499), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(941), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [650] = { - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_val] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_parenthesized_expression] = STATE(942), + [anon_sym_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(34), }, [651] = { - [sym_type_arguments] = STATE(906), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_val] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(654), + [sym__expression] = STATE(943), + [sym_if_expression] = STATE(654), + [sym_match_expression] = STATE(654), + [sym_case_block] = STATE(654), + [sym_assignment_expression] = STATE(654), + [sym_generic_function] = STATE(654), + [sym_call_expression] = STATE(654), + [sym_field_expression] = STATE(654), + [sym_instance_expression] = STATE(654), + [sym_infix_expression] = STATE(654), + [sym_prefix_expression] = STATE(654), + [sym_tuple_expression] = STATE(654), + [sym_parenthesized_expression] = STATE(654), + [sym_string_transform_expression] = STATE(654), + [sym_string] = STATE(654), + [sym__simple_string] = ACTIONS(1110), + [sym__string_start] = ACTIONS(1112), + [sym__multiline_string_start] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [sym_number] = ACTIONS(1128), + [sym_comment] = ACTIONS(34), }, [652] = { - [anon_sym_DOT] = ACTIONS(1493), + [sym_block] = STATE(654), + [sym__expression] = STATE(944), + [sym_if_expression] = STATE(654), + [sym_match_expression] = STATE(654), + [sym_case_block] = STATE(654), + [sym_assignment_expression] = STATE(654), + [sym_generic_function] = STATE(654), + [sym_call_expression] = STATE(654), + [sym_field_expression] = STATE(654), + [sym_instance_expression] = STATE(654), + [sym_infix_expression] = STATE(654), + [sym_prefix_expression] = STATE(654), + [sym_tuple_expression] = STATE(654), + [sym_parenthesized_expression] = STATE(654), + [sym_string_transform_expression] = STATE(654), + [sym_string] = STATE(654), + [sym__simple_string] = ACTIONS(1110), + [sym__string_start] = ACTIONS(1112), + [sym__multiline_string_start] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [sym_number] = ACTIONS(1128), [sym_comment] = ACTIONS(34), }, [653] = { - [anon_sym_EQ_GT] = ACTIONS(1501), - [sym_comment] = ACTIONS(34), + [sym_string] = STATE(945), + [sym__simple_string] = ACTIONS(1110), + [sym__string_start] = ACTIONS(1112), + [sym__multiline_string_start] = ACTIONS(1114), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_else] = ACTIONS(586), + [anon_sym_match] = ACTIONS(586), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LF] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [654] = { - [sym_type_arguments] = STATE(910), - [anon_sym_package] = ACTIONS(424), - [anon_sym_import] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(424), - [anon_sym_object] = ACTIONS(424), - [anon_sym_class] = ACTIONS(424), - [anon_sym_trait] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_val] = ACTIONS(424), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(424), - [anon_sym_var] = ACTIONS(424), - [anon_sym_type] = ACTIONS(424), - [anon_sym_def] = ACTIONS(424), - [anon_sym_abstract] = ACTIONS(424), - [anon_sym_final] = ACTIONS(424), - [anon_sym_sealed] = ACTIONS(424), - [anon_sym_implicit] = ACTIONS(424), - [anon_sym_lazy] = ACTIONS(424), - [anon_sym_override] = ACTIONS(424), - [anon_sym_private] = ACTIONS(424), - [anon_sym_protected] = ACTIONS(424), - [anon_sym_with] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_else] = ACTIONS(586), + [anon_sym_match] = ACTIONS(586), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LF] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [655] = { - [anon_sym_package] = ACTIONS(510), - [anon_sym_import] = ACTIONS(510), - [anon_sym_RBRACE] = ACTIONS(510), - [anon_sym_case] = ACTIONS(510), - [anon_sym_object] = ACTIONS(510), - [anon_sym_class] = ACTIONS(510), - [anon_sym_trait] = ACTIONS(510), - [anon_sym_val] = ACTIONS(510), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(1507), - [anon_sym_var] = ACTIONS(510), - [anon_sym_type] = ACTIONS(510), - [anon_sym_def] = ACTIONS(510), - [anon_sym_abstract] = ACTIONS(510), - [anon_sym_final] = ACTIONS(510), - [anon_sym_sealed] = ACTIONS(510), - [anon_sym_implicit] = ACTIONS(510), - [anon_sym_lazy] = ACTIONS(510), - [anon_sym_override] = ACTIONS(510), - [anon_sym_private] = ACTIONS(510), - [anon_sym_protected] = ACTIONS(510), - [anon_sym_with] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(1511), - [sym_operator_identifier] = ACTIONS(1511), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(953), + [sym_arguments] = STATE(954), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1571), + [anon_sym_match] = ACTIONS(1573), + [sym_identifier] = ACTIONS(1575), + [sym_operator_identifier] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_LF] = ACTIONS(1563), + [sym_comment] = ACTIONS(464), }, [656] = { - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_val] = ACTIONS(444), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1577), + [anon_sym_package] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1577), + [anon_sym_case] = ACTIONS(1577), + [anon_sym_object] = ACTIONS(1577), + [anon_sym_class] = ACTIONS(1577), + [anon_sym_trait] = ACTIONS(1577), + [anon_sym_val] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_def] = ACTIONS(1577), + [anon_sym_abstract] = ACTIONS(1577), + [anon_sym_final] = ACTIONS(1577), + [anon_sym_sealed] = ACTIONS(1577), + [anon_sym_implicit] = ACTIONS(1577), + [anon_sym_lazy] = ACTIONS(1577), + [anon_sym_override] = ACTIONS(1577), + [anon_sym_private] = ACTIONS(1577), + [anon_sym_protected] = ACTIONS(1577), + [sym_comment] = ACTIONS(34), }, [657] = { - [sym_type_arguments] = STATE(914), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_val] = ACTIONS(444), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1579), + [sym_comment] = ACTIONS(464), }, [658] = { - [anon_sym_DOT] = ACTIONS(1503), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_LF] = ACTIONS(1579), + [sym_comment] = ACTIONS(464), }, [659] = { - [anon_sym_EQ_GT] = ACTIONS(1513), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [660] = { - [anon_sym_package] = ACTIONS(112), - [anon_sym_import] = ACTIONS(112), - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_RBRACE] = ACTIONS(112), - [anon_sym_case] = ACTIONS(112), - [anon_sym_object] = ACTIONS(112), - [anon_sym_class] = ACTIONS(112), - [anon_sym_trait] = ACTIONS(112), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_val] = ACTIONS(112), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_var] = ACTIONS(112), - [anon_sym_type] = ACTIONS(112), - [anon_sym_def] = ACTIONS(112), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_final] = ACTIONS(112), - [anon_sym_sealed] = ACTIONS(112), - [anon_sym_implicit] = ACTIONS(112), - [anon_sym_lazy] = ACTIONS(112), - [anon_sym_override] = ACTIONS(112), - [anon_sym_private] = ACTIONS(112), - [anon_sym_protected] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_match] = ACTIONS(112), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_LF] = ACTIONS(1583), + [sym_comment] = ACTIONS(464), }, [661] = { - [sym_interpolation] = STATE(916), - [anon_sym_DOLLAR] = ACTIONS(114), + [sym_identifier] = ACTIONS(1586), [sym_comment] = ACTIONS(34), }, [662] = { - [sym_interpolation] = STATE(917), - [anon_sym_DOLLAR] = ACTIONS(116), + [aux_sym_val_declaration_repeat1] = STATE(960), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [663] = { - [sym_package_clause] = STATE(919), - [sym_import_declaration] = STATE(919), - [sym_object_definition] = STATE(919), - [sym_class_definition] = STATE(919), - [sym_trait_definition] = STATE(919), - [sym_val_definition] = STATE(919), - [sym_val_declaration] = STATE(919), - [sym_var_declaration] = STATE(919), - [sym_var_definition] = STATE(919), - [sym_type_definition] = STATE(919), - [sym_function_definition] = STATE(919), - [sym_function_declaration] = STATE(919), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(920), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [anon_sym_COLON] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [664] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(921), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [aux_sym_val_declaration_repeat1] = STATE(964), + [anon_sym_DOT] = ACTIONS(130), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1594), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [665] = { - [sym_parenthesized_expression] = STATE(922), - [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_COLON] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(140), [sym_comment] = ACTIONS(34), }, [666] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(923), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), + [sym_type_parameters] = STATE(967), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(1600), [sym_comment] = ACTIONS(34), }, [667] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(924), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), - [sym_comment] = ACTIONS(34), + [sym_type_parameters] = STATE(968), + [sym_parameters] = STATE(932), + [sym_block] = STATE(933), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_LF] = ACTIONS(1549), + [sym_comment] = ACTIONS(464), }, [668] = { - [sym_string] = STATE(925), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_package] = ACTIONS(550), - [anon_sym_import] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_case] = ACTIONS(550), - [anon_sym_object] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_val] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_var] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_def] = ACTIONS(550), - [anon_sym_abstract] = ACTIONS(550), - [anon_sym_final] = ACTIONS(550), - [anon_sym_sealed] = ACTIONS(550), - [anon_sym_implicit] = ACTIONS(550), - [anon_sym_lazy] = ACTIONS(550), - [anon_sym_override] = ACTIONS(550), - [anon_sym_private] = ACTIONS(550), - [anon_sym_protected] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_LF] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), }, [669] = { - [anon_sym_package] = ACTIONS(550), - [anon_sym_import] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_case] = ACTIONS(550), - [anon_sym_object] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_val] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_var] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_def] = ACTIONS(550), - [anon_sym_abstract] = ACTIONS(550), - [anon_sym_final] = ACTIONS(550), - [anon_sym_sealed] = ACTIONS(550), - [anon_sym_implicit] = ACTIONS(550), - [anon_sym_lazy] = ACTIONS(550), - [anon_sym_override] = ACTIONS(550), - [anon_sym_private] = ACTIONS(550), - [anon_sym_protected] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(970), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1602), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [670] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(556), - [anon_sym_import] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_case] = ACTIONS(556), - [anon_sym_object] = ACTIONS(556), - [anon_sym_class] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_def] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(556), - [anon_sym_final] = ACTIONS(556), - [anon_sym_sealed] = ACTIONS(556), - [anon_sym_implicit] = ACTIONS(556), - [anon_sym_lazy] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(1604), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_LF] = ACTIONS(1604), + [sym_comment] = ACTIONS(464), }, [671] = { - [sym__type] = STATE(934), - [sym_compound_type] = STATE(679), - [sym_infix_type] = STATE(679), - [sym_stable_type_identifier] = STATE(680), - [sym_stable_identifier] = STATE(681), - [sym_generic_type] = STATE(679), - [sym_function_type] = STATE(679), - [sym_parameter_types] = STATE(682), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1134), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_EQ] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), }, [672] = { - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(1507), - [anon_sym_with] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(589), - [sym_operator_identifier] = ACTIONS(589), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(972), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1606), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [673] = { - [anon_sym_package] = ACTIONS(601), - [anon_sym_import] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_case] = ACTIONS(601), - [anon_sym_object] = ACTIONS(601), - [anon_sym_class] = ACTIONS(601), - [anon_sym_trait] = ACTIONS(601), - [anon_sym_val] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(1529), - [anon_sym_var] = ACTIONS(601), - [anon_sym_type] = ACTIONS(601), - [anon_sym_def] = ACTIONS(601), - [anon_sym_abstract] = ACTIONS(601), - [anon_sym_final] = ACTIONS(601), - [anon_sym_sealed] = ACTIONS(601), - [anon_sym_implicit] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(601), - [anon_sym_override] = ACTIONS(601), - [anon_sym_private] = ACTIONS(601), - [anon_sym_protected] = ACTIONS(601), - [anon_sym_with] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(1511), - [sym_operator_identifier] = ACTIONS(1511), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(385), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [674] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(607), - [anon_sym_import] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_case] = ACTIONS(607), - [anon_sym_object] = ACTIONS(607), - [anon_sym_class] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_def] = ACTIONS(607), - [anon_sym_abstract] = ACTIONS(607), - [anon_sym_final] = ACTIONS(607), - [anon_sym_sealed] = ACTIONS(607), - [anon_sym_implicit] = ACTIONS(607), - [anon_sym_lazy] = ACTIONS(607), - [anon_sym_override] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_match] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_LF] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), }, [675] = { - [sym__type] = STATE(936), - [sym_compound_type] = STATE(679), - [sym_infix_type] = STATE(679), - [sym_stable_type_identifier] = STATE(680), - [sym_stable_identifier] = STATE(681), - [sym_generic_type] = STATE(679), - [sym_function_type] = STATE(679), - [sym_parameter_types] = STATE(682), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1134), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(1483), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_LF] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), }, [676] = { - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(1529), - [anon_sym_with] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(589), - [sym_operator_identifier] = ACTIONS(589), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_LF] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), }, [677] = { - [sym_type_arguments] = STATE(939), - [anon_sym_package] = ACTIONS(424), - [anon_sym_import] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(424), - [anon_sym_object] = ACTIONS(424), - [anon_sym_class] = ACTIONS(424), - [anon_sym_trait] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_val] = ACTIONS(424), - [anon_sym_var] = ACTIONS(424), - [anon_sym_type] = ACTIONS(424), - [anon_sym_def] = ACTIONS(424), - [anon_sym_abstract] = ACTIONS(424), - [anon_sym_final] = ACTIONS(424), - [anon_sym_sealed] = ACTIONS(424), - [anon_sym_implicit] = ACTIONS(424), - [anon_sym_lazy] = ACTIONS(424), - [anon_sym_override] = ACTIONS(424), - [anon_sym_private] = ACTIONS(424), - [anon_sym_protected] = ACTIONS(424), - [anon_sym_with] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(532), + [anon_sym_package] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [anon_sym_class] = ACTIONS(1273), + [anon_sym_trait] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_val] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_var] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1273), + [anon_sym_abstract] = ACTIONS(1273), + [anon_sym_final] = ACTIONS(1273), + [anon_sym_sealed] = ACTIONS(1273), + [anon_sym_implicit] = ACTIONS(1273), + [anon_sym_lazy] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_with] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [678] = { - [anon_sym_package] = ACTIONS(615), - [anon_sym_import] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_case] = ACTIONS(615), - [anon_sym_object] = ACTIONS(615), - [anon_sym_class] = ACTIONS(615), - [anon_sym_trait] = ACTIONS(615), - [anon_sym_val] = ACTIONS(615), - [anon_sym_var] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_def] = ACTIONS(615), - [anon_sym_abstract] = ACTIONS(615), - [anon_sym_final] = ACTIONS(615), - [anon_sym_sealed] = ACTIONS(615), - [anon_sym_implicit] = ACTIONS(615), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_override] = ACTIONS(615), - [anon_sym_private] = ACTIONS(615), - [anon_sym_protected] = ACTIONS(615), - [anon_sym_with] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [sym_operator_identifier] = ACTIONS(1537), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(975), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1610), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [679] = { - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_val] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(1612), + [anon_sym_package] = ACTIONS(1614), + [anon_sym_import] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(1614), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_class] = ACTIONS(1614), + [anon_sym_trait] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(1614), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(1614), + [anon_sym_type] = ACTIONS(1614), + [anon_sym_def] = ACTIONS(1614), + [anon_sym_abstract] = ACTIONS(1614), + [anon_sym_final] = ACTIONS(1614), + [anon_sym_sealed] = ACTIONS(1614), + [anon_sym_implicit] = ACTIONS(1614), + [anon_sym_lazy] = ACTIONS(1614), + [anon_sym_override] = ACTIONS(1614), + [anon_sym_private] = ACTIONS(1614), + [anon_sym_protected] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [680] = { - [sym_type_arguments] = STATE(942), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_val] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1289), + [anon_sym_package] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_object] = ACTIONS(1291), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_val] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_var] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(1291), + [anon_sym_final] = ACTIONS(1291), + [anon_sym_sealed] = ACTIONS(1291), + [anon_sym_implicit] = ACTIONS(1291), + [anon_sym_lazy] = ACTIONS(1291), + [anon_sym_override] = ACTIONS(1291), + [anon_sym_private] = ACTIONS(1291), + [anon_sym_protected] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [681] = { - [anon_sym_DOT] = ACTIONS(1531), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1295), + [anon_sym_package] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_object] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(1297), + [anon_sym_trait] = ACTIONS(1297), + [anon_sym_val] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1297), + [anon_sym_var] = ACTIONS(1297), + [anon_sym_type] = ACTIONS(1297), + [anon_sym_def] = ACTIONS(1297), + [anon_sym_abstract] = ACTIONS(1297), + [anon_sym_final] = ACTIONS(1297), + [anon_sym_sealed] = ACTIONS(1297), + [anon_sym_implicit] = ACTIONS(1297), + [anon_sym_lazy] = ACTIONS(1297), + [anon_sym_override] = ACTIONS(1297), + [anon_sym_private] = ACTIONS(1297), + [anon_sym_protected] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [682] = { - [anon_sym_EQ_GT] = ACTIONS(1539), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1301), + [anon_sym_package] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_object] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_val] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_sealed] = ACTIONS(1303), + [anon_sym_implicit] = ACTIONS(1303), + [anon_sym_lazy] = ACTIONS(1303), + [anon_sym_override] = ACTIONS(1303), + [anon_sym_private] = ACTIONS(1303), + [anon_sym_protected] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(727), + [sym_identifier] = ACTIONS(729), + [sym_operator_identifier] = ACTIONS(729), + [sym_comment] = ACTIONS(464), }, [683] = { - [sym__type] = STATE(944), - [sym_compound_type] = STATE(679), - [sym_infix_type] = STATE(679), - [sym_stable_type_identifier] = STATE(680), - [sym_stable_identifier] = STATE(681), - [sym_generic_type] = STATE(679), - [sym_function_type] = STATE(679), - [sym_parameter_types] = STATE(682), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1134), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_with] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), + [sym_operator_identifier] = ACTIONS(1315), + [sym_comment] = ACTIONS(464), }, [684] = { - [sym_type_arguments] = STATE(947), - [anon_sym_package] = ACTIONS(424), - [anon_sym_import] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(424), - [anon_sym_object] = ACTIONS(424), - [anon_sym_class] = ACTIONS(424), - [anon_sym_trait] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_val] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(424), - [anon_sym_var] = ACTIONS(424), - [anon_sym_type] = ACTIONS(424), - [anon_sym_def] = ACTIONS(424), - [anon_sym_abstract] = ACTIONS(424), - [anon_sym_final] = ACTIONS(424), - [anon_sym_sealed] = ACTIONS(424), - [anon_sym_implicit] = ACTIONS(424), - [anon_sym_lazy] = ACTIONS(424), - [anon_sym_override] = ACTIONS(424), - [anon_sym_private] = ACTIONS(424), - [anon_sym_protected] = ACTIONS(424), - [anon_sym_with] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [685] = { - [sym_block] = STATE(399), - [anon_sym_package] = ACTIONS(681), - [anon_sym_import] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_case] = ACTIONS(681), - [anon_sym_object] = ACTIONS(681), - [anon_sym_class] = ACTIONS(681), - [anon_sym_trait] = ACTIONS(681), - [anon_sym_val] = ACTIONS(681), - [anon_sym_EQ] = ACTIONS(1545), - [anon_sym_var] = ACTIONS(681), - [anon_sym_type] = ACTIONS(681), - [anon_sym_def] = ACTIONS(681), - [anon_sym_abstract] = ACTIONS(681), - [anon_sym_final] = ACTIONS(681), - [anon_sym_sealed] = ACTIONS(681), - [anon_sym_implicit] = ACTIONS(681), - [anon_sym_lazy] = ACTIONS(681), - [anon_sym_override] = ACTIONS(681), - [anon_sym_private] = ACTIONS(681), - [anon_sym_protected] = ACTIONS(681), - [anon_sym_with] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1549), - [sym_operator_identifier] = ACTIONS(1549), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [sym_comment] = ACTIONS(34), }, [686] = { - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_val] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1622), + [anon_sym_package] = ACTIONS(1622), + [anon_sym_import] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_case] = ACTIONS(1622), + [anon_sym_object] = ACTIONS(1622), + [anon_sym_class] = ACTIONS(1622), + [anon_sym_trait] = ACTIONS(1622), + [anon_sym_val] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_var] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_def] = ACTIONS(1622), + [anon_sym_abstract] = ACTIONS(1622), + [anon_sym_final] = ACTIONS(1622), + [anon_sym_sealed] = ACTIONS(1622), + [anon_sym_implicit] = ACTIONS(1622), + [anon_sym_lazy] = ACTIONS(1622), + [anon_sym_override] = ACTIONS(1622), + [anon_sym_private] = ACTIONS(1622), + [anon_sym_protected] = ACTIONS(1622), + [sym_comment] = ACTIONS(34), }, [687] = { - [sym_type_arguments] = STATE(951), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_case] = ACTIONS(444), - [anon_sym_object] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_val] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_def] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_implicit] = ACTIONS(444), - [anon_sym_lazy] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [aux_sym_parameters_repeat1] = STATE(687), + [anon_sym_COMMA] = ACTIONS(1624), + [anon_sym_RPAREN] = ACTIONS(1620), + [sym_comment] = ACTIONS(34), }, [688] = { - [anon_sym_DOT] = ACTIONS(1541), + [sym_block] = STATE(164), + [sym__expression] = STATE(977), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [689] = { - [anon_sym_EQ_GT] = ACTIONS(1551), + [ts_builtin_sym_end] = ACTIONS(1612), + [anon_sym_package] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_case] = ACTIONS(1612), + [anon_sym_object] = ACTIONS(1612), + [anon_sym_class] = ACTIONS(1612), + [anon_sym_trait] = ACTIONS(1612), + [anon_sym_val] = ACTIONS(1612), + [anon_sym_var] = ACTIONS(1612), + [anon_sym_type] = ACTIONS(1612), + [anon_sym_def] = ACTIONS(1612), + [anon_sym_abstract] = ACTIONS(1612), + [anon_sym_final] = ACTIONS(1612), + [anon_sym_sealed] = ACTIONS(1612), + [anon_sym_implicit] = ACTIONS(1612), + [anon_sym_lazy] = ACTIONS(1612), + [anon_sym_override] = ACTIONS(1612), + [anon_sym_private] = ACTIONS(1612), + [anon_sym_protected] = ACTIONS(1612), [sym_comment] = ACTIONS(34), }, [690] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(695), - [anon_sym_import] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_case] = ACTIONS(695), - [anon_sym_object] = ACTIONS(695), - [anon_sym_class] = ACTIONS(695), - [anon_sym_trait] = ACTIONS(695), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(695), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(695), - [anon_sym_type] = ACTIONS(695), - [anon_sym_def] = ACTIONS(695), - [anon_sym_abstract] = ACTIONS(695), - [anon_sym_final] = ACTIONS(695), - [anon_sym_sealed] = ACTIONS(695), - [anon_sym_implicit] = ACTIONS(695), - [anon_sym_lazy] = ACTIONS(695), - [anon_sym_override] = ACTIONS(695), - [anon_sym_private] = ACTIONS(695), - [anon_sym_protected] = ACTIONS(695), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(979), + [ts_builtin_sym_end] = ACTIONS(1627), + [anon_sym_package] = ACTIONS(1629), + [anon_sym_import] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_class] = ACTIONS(1629), + [anon_sym_trait] = ACTIONS(1629), + [anon_sym_val] = ACTIONS(1629), + [anon_sym_EQ] = ACTIONS(1631), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_def] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(1629), + [anon_sym_final] = ACTIONS(1629), + [anon_sym_sealed] = ACTIONS(1629), + [anon_sym_implicit] = ACTIONS(1629), + [anon_sym_lazy] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_with] = ACTIONS(727), + [sym_identifier] = ACTIONS(729), + [sym_operator_identifier] = ACTIONS(729), + [sym_comment] = ACTIONS(464), }, [691] = { - [sym__type] = STATE(953), - [sym_compound_type] = STATE(686), - [sym_infix_type] = STATE(686), - [sym_stable_type_identifier] = STATE(687), - [sym_stable_identifier] = STATE(688), - [sym_generic_type] = STATE(686), - [sym_function_type] = STATE(686), - [sym_parameter_types] = STATE(689), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1138), + [sym_template_body] = STATE(703), + [sym_extends_clause] = STATE(980), + [ts_builtin_sym_end] = ACTIONS(1204), + [anon_sym_package] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_object] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(1204), + [anon_sym_trait] = ACTIONS(1204), + [anon_sym_val] = ACTIONS(1204), + [anon_sym_var] = ACTIONS(1204), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_def] = ACTIONS(1204), + [anon_sym_abstract] = ACTIONS(1204), + [anon_sym_final] = ACTIONS(1204), + [anon_sym_sealed] = ACTIONS(1204), + [anon_sym_implicit] = ACTIONS(1204), + [anon_sym_lazy] = ACTIONS(1204), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_private] = ACTIONS(1204), + [anon_sym_protected] = ACTIONS(1204), + [anon_sym_extends] = ACTIONS(108), [sym_comment] = ACTIONS(34), }, [692] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(954), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), + [sym_block] = STATE(164), + [sym__expression] = STATE(981), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [693] = { - [sym_block] = STATE(399), - [anon_sym_package] = ACTIONS(679), - [anon_sym_import] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(679), - [anon_sym_case] = ACTIONS(679), - [anon_sym_object] = ACTIONS(679), - [anon_sym_class] = ACTIONS(679), - [anon_sym_trait] = ACTIONS(679), - [anon_sym_val] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(1553), - [anon_sym_EQ] = ACTIONS(1555), - [anon_sym_var] = ACTIONS(679), - [anon_sym_type] = ACTIONS(679), - [anon_sym_def] = ACTIONS(679), - [anon_sym_abstract] = ACTIONS(679), - [anon_sym_final] = ACTIONS(679), - [anon_sym_sealed] = ACTIONS(679), - [anon_sym_implicit] = ACTIONS(679), - [anon_sym_lazy] = ACTIONS(679), - [anon_sym_override] = ACTIONS(679), - [anon_sym_private] = ACTIONS(679), - [anon_sym_protected] = ACTIONS(679), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1633), + [anon_sym_package] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1635), + [anon_sym_case] = ACTIONS(1635), + [anon_sym_object] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(1635), + [anon_sym_trait] = ACTIONS(1635), + [anon_sym_val] = ACTIONS(1635), + [anon_sym_var] = ACTIONS(1635), + [anon_sym_type] = ACTIONS(1635), + [anon_sym_def] = ACTIONS(1635), + [anon_sym_abstract] = ACTIONS(1635), + [anon_sym_final] = ACTIONS(1635), + [anon_sym_sealed] = ACTIONS(1635), + [anon_sym_implicit] = ACTIONS(1635), + [anon_sym_lazy] = ACTIONS(1635), + [anon_sym_override] = ACTIONS(1635), + [anon_sym_private] = ACTIONS(1635), + [anon_sym_protected] = ACTIONS(1635), + [anon_sym_with] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [sym_operator_identifier] = ACTIONS(655), + [sym_comment] = ACTIONS(464), }, [694] = { - [sym_type_parameters] = STATE(956), - [sym_template_body] = STATE(229), - [sym_extends_clause] = STATE(230), - [sym_class_parameters] = STATE(900), - [anon_sym_package] = ACTIONS(386), - [anon_sym_import] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(386), - [anon_sym_case] = ACTIONS(386), - [anon_sym_object] = ACTIONS(386), - [anon_sym_class] = ACTIONS(386), - [anon_sym_trait] = ACTIONS(386), - [anon_sym_LBRACK] = ACTIONS(102), - [anon_sym_val] = ACTIONS(386), - [anon_sym_var] = ACTIONS(386), - [anon_sym_type] = ACTIONS(386), - [anon_sym_def] = ACTIONS(386), - [anon_sym_abstract] = ACTIONS(386), - [anon_sym_final] = ACTIONS(386), - [anon_sym_sealed] = ACTIONS(386), - [anon_sym_implicit] = ACTIONS(386), - [anon_sym_lazy] = ACTIONS(386), - [anon_sym_override] = ACTIONS(386), - [anon_sym_private] = ACTIONS(386), - [anon_sym_protected] = ACTIONS(386), - [anon_sym_extends] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(106), + [sym_block] = STATE(164), + [sym__expression] = STATE(982), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [695] = { - [sym_parameters] = STATE(957), - [sym_block] = STATE(399), - [anon_sym_package] = ACTIONS(679), - [anon_sym_import] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(679), - [anon_sym_case] = ACTIONS(679), - [anon_sym_object] = ACTIONS(679), - [anon_sym_class] = ACTIONS(679), - [anon_sym_trait] = ACTIONS(679), - [anon_sym_val] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(1553), - [anon_sym_EQ] = ACTIONS(1555), - [anon_sym_var] = ACTIONS(679), - [anon_sym_type] = ACTIONS(679), - [anon_sym_def] = ACTIONS(679), - [anon_sym_abstract] = ACTIONS(679), - [anon_sym_final] = ACTIONS(679), - [anon_sym_sealed] = ACTIONS(679), - [anon_sym_implicit] = ACTIONS(679), - [anon_sym_lazy] = ACTIONS(679), - [anon_sym_override] = ACTIONS(679), - [anon_sym_private] = ACTIONS(679), - [anon_sym_protected] = ACTIONS(679), - [anon_sym_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1637), + [anon_sym_package] = ACTIONS(1639), + [anon_sym_import] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_class] = ACTIONS(1639), + [anon_sym_trait] = ACTIONS(1639), + [anon_sym_val] = ACTIONS(1639), + [anon_sym_var] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_def] = ACTIONS(1639), + [anon_sym_abstract] = ACTIONS(1639), + [anon_sym_final] = ACTIONS(1639), + [anon_sym_sealed] = ACTIONS(1639), + [anon_sym_implicit] = ACTIONS(1639), + [anon_sym_lazy] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_with] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [sym_operator_identifier] = ACTIONS(655), + [sym_comment] = ACTIONS(464), }, [696] = { - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_COMMA] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_RBRACK] = ACTIONS(500), - [anon_sym_RPAREN] = ACTIONS(500), - [anon_sym_with] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1159), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1641), + [anon_sym_package] = ACTIONS(1643), + [anon_sym_import] = ACTIONS(1643), + [anon_sym_case] = ACTIONS(1643), + [anon_sym_object] = ACTIONS(1643), + [anon_sym_class] = ACTIONS(1643), + [anon_sym_trait] = ACTIONS(1643), + [anon_sym_val] = ACTIONS(1643), + [anon_sym_var] = ACTIONS(1643), + [anon_sym_type] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_abstract] = ACTIONS(1643), + [anon_sym_final] = ACTIONS(1643), + [anon_sym_sealed] = ACTIONS(1643), + [anon_sym_implicit] = ACTIONS(1643), + [anon_sym_lazy] = ACTIONS(1643), + [anon_sym_override] = ACTIONS(1643), + [anon_sym_private] = ACTIONS(1643), + [anon_sym_protected] = ACTIONS(1643), + [anon_sym_with] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [sym_operator_identifier] = ACTIONS(655), + [sym_comment] = ACTIONS(464), }, [697] = { - [aux_sym_parameter_types_repeat1] = STATE(959), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1557), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(983), + [sym_compound_type] = STATE(219), + [sym_infix_type] = STATE(219), + [sym_stable_type_identifier] = STATE(220), + [sym_stable_identifier] = STATE(221), + [sym_generic_type] = STATE(219), + [sym_function_type] = STATE(219), + [sym_parameter_types] = STATE(222), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(374), + [sym_comment] = ACTIONS(34), }, [698] = { - [anon_sym_COMMA] = ACTIONS(1559), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_with] = ACTIONS(781), - [sym_identifier] = ACTIONS(783), - [sym_operator_identifier] = ACTIONS(785), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_EQ_GT] = ACTIONS(763), + [sym_comment] = ACTIONS(34), }, [699] = { - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACK] = ACTIONS(1175), - [anon_sym_RPAREN] = ACTIONS(1175), - [anon_sym_with] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1177), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [sym_comment] = ACTIONS(34), }, [700] = { - [anon_sym_COMMA] = ACTIONS(1181), - [anon_sym_RBRACK] = ACTIONS(1181), - [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_with] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1183), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [sym_comment] = ACTIONS(34), }, [701] = { - [anon_sym_EQ_GT] = ACTIONS(1561), + [ts_builtin_sym_end] = ACTIONS(1649), + [anon_sym_package] = ACTIONS(1649), + [anon_sym_import] = ACTIONS(1649), + [anon_sym_RBRACE] = ACTIONS(1649), + [anon_sym_case] = ACTIONS(1649), + [anon_sym_object] = ACTIONS(1649), + [anon_sym_class] = ACTIONS(1649), + [anon_sym_trait] = ACTIONS(1649), + [anon_sym_val] = ACTIONS(1649), + [anon_sym_var] = ACTIONS(1649), + [anon_sym_type] = ACTIONS(1649), + [anon_sym_def] = ACTIONS(1649), + [anon_sym_abstract] = ACTIONS(1649), + [anon_sym_final] = ACTIONS(1649), + [anon_sym_sealed] = ACTIONS(1649), + [anon_sym_implicit] = ACTIONS(1649), + [anon_sym_lazy] = ACTIONS(1649), + [anon_sym_override] = ACTIONS(1649), + [anon_sym_private] = ACTIONS(1649), + [anon_sym_protected] = ACTIONS(1649), [sym_comment] = ACTIONS(34), }, [702] = { - [aux_sym_parameter_types_repeat1] = STATE(702), - [anon_sym_COMMA] = ACTIONS(1563), - [anon_sym_RPAREN] = ACTIONS(1559), + [aux_sym_import_selectors_repeat1] = STATE(702), + [anon_sym_COMMA] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1645), [sym_comment] = ACTIONS(34), }, [703] = { - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_RPAREN] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(781), - [sym_identifier] = ACTIONS(783), - [sym_operator_identifier] = ACTIONS(785), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1654), + [anon_sym_package] = ACTIONS(1654), + [anon_sym_import] = ACTIONS(1654), + [anon_sym_RBRACE] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1654), + [anon_sym_object] = ACTIONS(1654), + [anon_sym_class] = ACTIONS(1654), + [anon_sym_trait] = ACTIONS(1654), + [anon_sym_val] = ACTIONS(1654), + [anon_sym_var] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_def] = ACTIONS(1654), + [anon_sym_abstract] = ACTIONS(1654), + [anon_sym_final] = ACTIONS(1654), + [anon_sym_sealed] = ACTIONS(1654), + [anon_sym_implicit] = ACTIONS(1654), + [anon_sym_lazy] = ACTIONS(1654), + [anon_sym_override] = ACTIONS(1654), + [anon_sym_private] = ACTIONS(1654), + [anon_sym_protected] = ACTIONS(1654), + [sym_comment] = ACTIONS(34), }, [704] = { - [sym__type] = STATE(960), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_template_body] = STATE(245), + [sym_extends_clause] = STATE(246), + [sym_class_parameters] = STATE(984), + [anon_sym_package] = ACTIONS(412), + [anon_sym_import] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_case] = ACTIONS(412), + [anon_sym_object] = ACTIONS(412), + [anon_sym_class] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_val] = ACTIONS(412), + [anon_sym_var] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_def] = ACTIONS(412), + [anon_sym_abstract] = ACTIONS(412), + [anon_sym_final] = ACTIONS(412), + [anon_sym_sealed] = ACTIONS(412), + [anon_sym_implicit] = ACTIONS(412), + [anon_sym_lazy] = ACTIONS(412), + [anon_sym_override] = ACTIONS(412), + [anon_sym_private] = ACTIONS(412), + [anon_sym_protected] = ACTIONS(412), + [anon_sym_extends] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(110), [sym_comment] = ACTIONS(34), }, [705] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(245), + [sym_extends_clause] = STATE(246), + [anon_sym_package] = ACTIONS(412), + [anon_sym_import] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_case] = ACTIONS(412), + [anon_sym_object] = ACTIONS(412), + [anon_sym_class] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_val] = ACTIONS(412), + [anon_sym_var] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_def] = ACTIONS(412), + [anon_sym_abstract] = ACTIONS(412), + [anon_sym_final] = ACTIONS(412), + [anon_sym_sealed] = ACTIONS(412), + [anon_sym_implicit] = ACTIONS(412), + [anon_sym_lazy] = ACTIONS(412), + [anon_sym_override] = ACTIONS(412), + [anon_sym_private] = ACTIONS(412), + [anon_sym_protected] = ACTIONS(412), + [anon_sym_extends] = ACTIONS(769), + [sym_comment] = ACTIONS(34), }, [706] = { - [sym__type] = STATE(699), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(987), + [anon_sym_package] = ACTIONS(456), + [anon_sym_import] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(456), + [anon_sym_RBRACE] = ACTIONS(456), + [anon_sym_case] = ACTIONS(456), + [anon_sym_object] = ACTIONS(456), + [anon_sym_class] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_val] = ACTIONS(456), + [anon_sym_var] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_def] = ACTIONS(456), + [anon_sym_abstract] = ACTIONS(456), + [anon_sym_final] = ACTIONS(456), + [anon_sym_sealed] = ACTIONS(456), + [anon_sym_implicit] = ACTIONS(456), + [anon_sym_lazy] = ACTIONS(456), + [anon_sym_override] = ACTIONS(456), + [anon_sym_private] = ACTIONS(456), + [anon_sym_protected] = ACTIONS(456), + [anon_sym_with] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [707] = { - [sym__type] = STATE(700), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(468), + [anon_sym_import] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_case] = ACTIONS(468), + [anon_sym_object] = ACTIONS(468), + [anon_sym_class] = ACTIONS(468), + [anon_sym_trait] = ACTIONS(468), + [anon_sym_val] = ACTIONS(468), + [anon_sym_var] = ACTIONS(468), + [anon_sym_type] = ACTIONS(468), + [anon_sym_def] = ACTIONS(468), + [anon_sym_abstract] = ACTIONS(468), + [anon_sym_final] = ACTIONS(468), + [anon_sym_sealed] = ACTIONS(468), + [anon_sym_implicit] = ACTIONS(468), + [anon_sym_lazy] = ACTIONS(468), + [anon_sym_override] = ACTIONS(468), + [anon_sym_private] = ACTIONS(468), + [anon_sym_protected] = ACTIONS(468), + [anon_sym_with] = ACTIONS(1660), + [sym_identifier] = ACTIONS(1662), + [sym_operator_identifier] = ACTIONS(1662), + [sym_comment] = ACTIONS(464), }, [708] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1572), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_val] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [709] = { - [sym__type] = STATE(963), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(990), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_val] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [710] = { - [anon_sym_COMMA] = ACTIONS(1574), - [anon_sym_EQ] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1201), - [sym_operator_identifier] = ACTIONS(1201), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1656), + [sym_comment] = ACTIONS(34), }, [711] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1574), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(1664), + [sym_comment] = ACTIONS(34), }, [712] = { - [sym_identifier] = ACTIONS(1578), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(994), + [anon_sym_package] = ACTIONS(456), + [anon_sym_import] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(456), + [anon_sym_case] = ACTIONS(456), + [anon_sym_object] = ACTIONS(456), + [anon_sym_class] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_val] = ACTIONS(456), + [anon_sym_COLON] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_var] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_def] = ACTIONS(456), + [anon_sym_abstract] = ACTIONS(456), + [anon_sym_final] = ACTIONS(456), + [anon_sym_sealed] = ACTIONS(456), + [anon_sym_implicit] = ACTIONS(456), + [anon_sym_lazy] = ACTIONS(456), + [anon_sym_override] = ACTIONS(456), + [anon_sym_private] = ACTIONS(456), + [anon_sym_protected] = ACTIONS(456), + [anon_sym_with] = ACTIONS(456), + [anon_sym_PIPE] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [713] = { - [sym__type] = STATE(966), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(542), + [anon_sym_import] = ACTIONS(542), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_case] = ACTIONS(542), + [anon_sym_object] = ACTIONS(542), + [anon_sym_class] = ACTIONS(542), + [anon_sym_trait] = ACTIONS(542), + [anon_sym_val] = ACTIONS(542), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(1670), + [anon_sym_var] = ACTIONS(542), + [anon_sym_type] = ACTIONS(542), + [anon_sym_def] = ACTIONS(542), + [anon_sym_abstract] = ACTIONS(542), + [anon_sym_final] = ACTIONS(542), + [anon_sym_sealed] = ACTIONS(542), + [anon_sym_implicit] = ACTIONS(542), + [anon_sym_lazy] = ACTIONS(542), + [anon_sym_override] = ACTIONS(542), + [anon_sym_private] = ACTIONS(542), + [anon_sym_protected] = ACTIONS(542), + [anon_sym_with] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(1674), + [sym_operator_identifier] = ACTIONS(1674), + [sym_comment] = ACTIONS(464), }, [714] = { - [anon_sym_COMMA] = ACTIONS(791), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_with] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_val] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [715] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(967), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(998), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_val] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [716] = { - [sym__type] = STATE(968), - [sym_compound_type] = STATE(461), - [sym_infix_type] = STATE(461), - [sym_stable_type_identifier] = STATE(462), - [sym_stable_identifier] = STATE(463), - [sym_generic_type] = STATE(461), - [sym_function_type] = STATE(461), - [sym_parameter_types] = STATE(464), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(1666), [sym_comment] = ACTIONS(34), }, [717] = { - [sym__type] = STATE(969), - [sym_compound_type] = STATE(461), - [sym_infix_type] = STATE(461), - [sym_stable_type_identifier] = STATE(462), - [sym_stable_identifier] = STATE(463), - [sym_generic_type] = STATE(461), - [sym_function_type] = STATE(461), - [sym_parameter_types] = STATE(464), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(809), + [anon_sym_EQ_GT] = ACTIONS(1676), [sym_comment] = ACTIONS(34), }, [718] = { - [anon_sym_COMMA] = ACTIONS(797), - [anon_sym_EQ] = ACTIONS(799), - [anon_sym_RPAREN] = ACTIONS(797), - [anon_sym_with] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(116), + [anon_sym_import] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_RBRACE] = ACTIONS(116), + [anon_sym_case] = ACTIONS(116), + [anon_sym_object] = ACTIONS(116), + [anon_sym_class] = ACTIONS(116), + [anon_sym_trait] = ACTIONS(116), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_val] = ACTIONS(116), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_var] = ACTIONS(116), + [anon_sym_type] = ACTIONS(116), + [anon_sym_def] = ACTIONS(116), + [anon_sym_abstract] = ACTIONS(116), + [anon_sym_final] = ACTIONS(116), + [anon_sym_sealed] = ACTIONS(116), + [anon_sym_implicit] = ACTIONS(116), + [anon_sym_lazy] = ACTIONS(116), + [anon_sym_override] = ACTIONS(116), + [anon_sym_private] = ACTIONS(116), + [anon_sym_protected] = ACTIONS(116), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_match] = ACTIONS(116), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [719] = { - [sym__type] = STATE(970), - [sym_compound_type] = STATE(461), - [sym_infix_type] = STATE(461), - [sym_stable_type_identifier] = STATE(462), - [sym_stable_identifier] = STATE(463), - [sym_generic_type] = STATE(461), - [sym_function_type] = STATE(461), - [sym_parameter_types] = STATE(464), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(809), + [sym_interpolation] = STATE(1000), + [anon_sym_DOLLAR] = ACTIONS(118), [sym_comment] = ACTIONS(34), }, [720] = { - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1001), + [anon_sym_DOLLAR] = ACTIONS(120), + [sym_comment] = ACTIONS(34), }, [721] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1580), + [sym_package_clause] = STATE(1003), + [sym_import_declaration] = STATE(1003), + [sym_object_definition] = STATE(1003), + [sym_class_definition] = STATE(1003), + [sym_trait_definition] = STATE(1003), + [sym_val_definition] = STATE(1003), + [sym_val_declaration] = STATE(1003), + [sym_var_declaration] = STATE(1003), + [sym_var_definition] = STATE(1003), + [sym_type_definition] = STATE(1003), + [sym_function_definition] = STATE(1003), + [sym_function_declaration] = STATE(1003), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(1004), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(1005), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [722] = { - [sym__string_middle] = ACTIONS(1440), - [sym__string_end] = ACTIONS(1440), + [sym_block] = STATE(340), + [sym__expression] = STATE(1006), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [723] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_parenthesized_expression] = STATE(1007), + [anon_sym_LPAREN] = ACTIONS(580), [sym_comment] = ACTIONS(34), }, [724] = { - [sym__multiline_string_middle] = ACTIONS(1440), - [sym__multiline_string_end] = ACTIONS(1440), + [sym_block] = STATE(727), + [sym__expression] = STATE(1008), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [725] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_block] = STATE(727), + [sym__expression] = STATE(1009), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [726] = { - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_COMMA] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_RPAREN] = ACTIONS(500), - [anon_sym_with] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [sym_string] = STATE(1010), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_case] = ACTIONS(584), + [anon_sym_object] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_val] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_var] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_def] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_implicit] = ACTIONS(584), + [anon_sym_lazy] = ACTIONS(584), + [anon_sym_override] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [727] = { - [aux_sym_parameter_types_repeat1] = STATE(975), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1586), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_case] = ACTIONS(584), + [anon_sym_object] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_val] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_var] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_def] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_implicit] = ACTIONS(584), + [anon_sym_lazy] = ACTIONS(584), + [anon_sym_override] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [728] = { - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1175), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(590), + [anon_sym_import] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_case] = ACTIONS(590), + [anon_sym_object] = ACTIONS(590), + [anon_sym_class] = ACTIONS(590), + [anon_sym_trait] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(590), + [anon_sym_type] = ACTIONS(590), + [anon_sym_def] = ACTIONS(590), + [anon_sym_abstract] = ACTIONS(590), + [anon_sym_final] = ACTIONS(590), + [anon_sym_sealed] = ACTIONS(590), + [anon_sym_implicit] = ACTIONS(590), + [anon_sym_lazy] = ACTIONS(590), + [anon_sym_override] = ACTIONS(590), + [anon_sym_private] = ACTIONS(590), + [anon_sym_protected] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [729] = { - [anon_sym_COMMA] = ACTIONS(1181), - [anon_sym_COLON] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1019), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), + [sym_comment] = ACTIONS(34), }, [730] = { - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_COLON] = ACTIONS(1189), - [anon_sym_RPAREN] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(1189), - [sym_identifier] = ACTIONS(851), - [sym_operator_identifier] = ACTIONS(851), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [731] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_COLON] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(635), + [anon_sym_import] = ACTIONS(635), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_case] = ACTIONS(635), + [anon_sym_object] = ACTIONS(635), + [anon_sym_class] = ACTIONS(635), + [anon_sym_trait] = ACTIONS(635), + [anon_sym_val] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(1692), + [anon_sym_var] = ACTIONS(635), + [anon_sym_type] = ACTIONS(635), + [anon_sym_def] = ACTIONS(635), + [anon_sym_abstract] = ACTIONS(635), + [anon_sym_final] = ACTIONS(635), + [anon_sym_sealed] = ACTIONS(635), + [anon_sym_implicit] = ACTIONS(635), + [anon_sym_lazy] = ACTIONS(635), + [anon_sym_override] = ACTIONS(635), + [anon_sym_private] = ACTIONS(635), + [anon_sym_protected] = ACTIONS(635), + [anon_sym_with] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(1674), + [sym_operator_identifier] = ACTIONS(1674), + [sym_comment] = ACTIONS(464), }, [732] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1588), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(641), + [anon_sym_import] = ACTIONS(641), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_case] = ACTIONS(641), + [anon_sym_object] = ACTIONS(641), + [anon_sym_class] = ACTIONS(641), + [anon_sym_trait] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(641), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(641), + [anon_sym_type] = ACTIONS(641), + [anon_sym_def] = ACTIONS(641), + [anon_sym_abstract] = ACTIONS(641), + [anon_sym_final] = ACTIONS(641), + [anon_sym_sealed] = ACTIONS(641), + [anon_sym_implicit] = ACTIONS(641), + [anon_sym_lazy] = ACTIONS(641), + [anon_sym_override] = ACTIONS(641), + [anon_sym_private] = ACTIONS(641), + [anon_sym_protected] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [733] = { - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_package] = ACTIONS(827), - [anon_sym_import] = ACTIONS(827), - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_case] = ACTIONS(827), - [anon_sym_object] = ACTIONS(827), - [anon_sym_class] = ACTIONS(827), - [anon_sym_trait] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_val] = ACTIONS(827), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_type] = ACTIONS(827), - [anon_sym_def] = ACTIONS(827), - [anon_sym_abstract] = ACTIONS(827), - [anon_sym_final] = ACTIONS(827), - [anon_sym_sealed] = ACTIONS(827), - [anon_sym_implicit] = ACTIONS(827), - [anon_sym_lazy] = ACTIONS(827), - [anon_sym_override] = ACTIONS(827), - [anon_sym_private] = ACTIONS(827), - [anon_sym_protected] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_match] = ACTIONS(827), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1021), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), + [sym_comment] = ACTIONS(34), }, [734] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_package] = ACTIONS(1592), - [anon_sym_import] = ACTIONS(1592), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1592), - [anon_sym_object] = ACTIONS(1592), - [anon_sym_class] = ACTIONS(1592), - [anon_sym_trait] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_val] = ACTIONS(1592), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_def] = ACTIONS(1592), - [anon_sym_abstract] = ACTIONS(1592), - [anon_sym_final] = ACTIONS(1592), - [anon_sym_sealed] = ACTIONS(1592), - [anon_sym_implicit] = ACTIONS(1592), - [anon_sym_lazy] = ACTIONS(1592), - [anon_sym_override] = ACTIONS(1592), - [anon_sym_private] = ACTIONS(1592), - [anon_sym_protected] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(1692), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [735] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1024), + [anon_sym_package] = ACTIONS(456), + [anon_sym_import] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(456), + [anon_sym_case] = ACTIONS(456), + [anon_sym_object] = ACTIONS(456), + [anon_sym_class] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_val] = ACTIONS(456), + [anon_sym_var] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_def] = ACTIONS(456), + [anon_sym_abstract] = ACTIONS(456), + [anon_sym_final] = ACTIONS(456), + [anon_sym_sealed] = ACTIONS(456), + [anon_sym_implicit] = ACTIONS(456), + [anon_sym_lazy] = ACTIONS(456), + [anon_sym_override] = ACTIONS(456), + [anon_sym_private] = ACTIONS(456), + [anon_sym_protected] = ACTIONS(456), + [anon_sym_with] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [736] = { - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_match] = ACTIONS(482), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(649), + [anon_sym_import] = ACTIONS(649), + [anon_sym_RBRACE] = ACTIONS(649), + [anon_sym_case] = ACTIONS(649), + [anon_sym_object] = ACTIONS(649), + [anon_sym_class] = ACTIONS(649), + [anon_sym_trait] = ACTIONS(649), + [anon_sym_val] = ACTIONS(649), + [anon_sym_var] = ACTIONS(649), + [anon_sym_type] = ACTIONS(649), + [anon_sym_def] = ACTIONS(649), + [anon_sym_abstract] = ACTIONS(649), + [anon_sym_final] = ACTIONS(649), + [anon_sym_sealed] = ACTIONS(649), + [anon_sym_implicit] = ACTIONS(649), + [anon_sym_lazy] = ACTIONS(649), + [anon_sym_override] = ACTIONS(649), + [anon_sym_private] = ACTIONS(649), + [anon_sym_protected] = ACTIONS(649), + [anon_sym_with] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [sym_operator_identifier] = ACTIONS(1700), + [sym_comment] = ACTIONS(464), }, [737] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(1598), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_val] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [738] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(1598), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1027), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_val] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [739] = { - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_RPAREN] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1694), + [sym_comment] = ACTIONS(34), }, [740] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(1702), [sym_comment] = ACTIONS(34), }, [741] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_LF] = ACTIONS(1604), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1029), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), + [sym_comment] = ACTIONS(34), }, [742] = { - [anon_sym_DOT] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1032), + [anon_sym_package] = ACTIONS(456), + [anon_sym_import] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(456), + [anon_sym_RBRACE] = ACTIONS(456), + [anon_sym_case] = ACTIONS(456), + [anon_sym_object] = ACTIONS(456), + [anon_sym_class] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_val] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_var] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_def] = ACTIONS(456), + [anon_sym_abstract] = ACTIONS(456), + [anon_sym_final] = ACTIONS(456), + [anon_sym_sealed] = ACTIONS(456), + [anon_sym_implicit] = ACTIONS(456), + [anon_sym_lazy] = ACTIONS(456), + [anon_sym_override] = ACTIONS(456), + [anon_sym_private] = ACTIONS(456), + [anon_sym_protected] = ACTIONS(456), + [anon_sym_with] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [743] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(1606), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(424), + [anon_sym_package] = ACTIONS(721), + [anon_sym_import] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_case] = ACTIONS(721), + [anon_sym_object] = ACTIONS(721), + [anon_sym_class] = ACTIONS(721), + [anon_sym_trait] = ACTIONS(721), + [anon_sym_val] = ACTIONS(721), + [anon_sym_EQ] = ACTIONS(1708), + [anon_sym_var] = ACTIONS(721), + [anon_sym_type] = ACTIONS(721), + [anon_sym_def] = ACTIONS(721), + [anon_sym_abstract] = ACTIONS(721), + [anon_sym_final] = ACTIONS(721), + [anon_sym_sealed] = ACTIONS(721), + [anon_sym_implicit] = ACTIONS(721), + [anon_sym_lazy] = ACTIONS(721), + [anon_sym_override] = ACTIONS(721), + [anon_sym_private] = ACTIONS(721), + [anon_sym_protected] = ACTIONS(721), + [anon_sym_with] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [sym_operator_identifier] = ACTIONS(1712), + [sym_comment] = ACTIONS(464), }, [744] = { - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(110), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_RPAREN] = ACTIONS(110), - [anon_sym_else] = ACTIONS(112), - [anon_sym_match] = ACTIONS(112), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_val] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [745] = { - [sym_interpolation] = STATE(982), - [anon_sym_DOLLAR] = ACTIONS(114), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1036), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_object] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_val] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_var] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_def] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_implicit] = ACTIONS(476), + [anon_sym_lazy] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [746] = { - [sym_interpolation] = STATE(983), - [anon_sym_DOLLAR] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(1704), [sym_comment] = ACTIONS(34), }, [747] = { - [sym_package_clause] = STATE(985), - [sym_import_declaration] = STATE(985), - [sym_object_definition] = STATE(985), - [sym_class_definition] = STATE(985), - [sym_trait_definition] = STATE(985), - [sym_val_definition] = STATE(985), - [sym_val_declaration] = STATE(985), - [sym_var_declaration] = STATE(985), - [sym_var_definition] = STATE(985), - [sym_type_definition] = STATE(985), - [sym_function_definition] = STATE(985), - [sym_function_declaration] = STATE(985), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(986), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(1714), [sym_comment] = ACTIONS(34), }, [748] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(987), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(735), + [anon_sym_import] = ACTIONS(735), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_case] = ACTIONS(735), + [anon_sym_object] = ACTIONS(735), + [anon_sym_class] = ACTIONS(735), + [anon_sym_trait] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_def] = ACTIONS(735), + [anon_sym_abstract] = ACTIONS(735), + [anon_sym_final] = ACTIONS(735), + [anon_sym_sealed] = ACTIONS(735), + [anon_sym_implicit] = ACTIONS(735), + [anon_sym_lazy] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [749] = { - [sym_parenthesized_expression] = STATE(988), - [anon_sym_LPAREN] = ACTIONS(546), + [sym__type] = STATE(1038), + [sym_compound_type] = STATE(744), + [sym_infix_type] = STATE(744), + [sym_stable_type_identifier] = STATE(745), + [sym_stable_identifier] = STATE(746), + [sym_generic_type] = STATE(744), + [sym_function_type] = STATE(744), + [sym_parameter_types] = STATE(747), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1238), [sym_comment] = ACTIONS(34), }, [750] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(989), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), + [sym_block] = STATE(727), + [sym__expression] = STATE(1039), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [751] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(990), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), + [sym_block] = STATE(424), + [anon_sym_package] = ACTIONS(719), + [anon_sym_import] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_case] = ACTIONS(719), + [anon_sym_object] = ACTIONS(719), + [anon_sym_class] = ACTIONS(719), + [anon_sym_trait] = ACTIONS(719), + [anon_sym_val] = ACTIONS(719), + [anon_sym_COLON] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_var] = ACTIONS(719), + [anon_sym_type] = ACTIONS(719), + [anon_sym_def] = ACTIONS(719), + [anon_sym_abstract] = ACTIONS(719), + [anon_sym_final] = ACTIONS(719), + [anon_sym_sealed] = ACTIONS(719), + [anon_sym_implicit] = ACTIONS(719), + [anon_sym_lazy] = ACTIONS(719), + [anon_sym_override] = ACTIONS(719), + [anon_sym_private] = ACTIONS(719), + [anon_sym_protected] = ACTIONS(719), [sym_comment] = ACTIONS(34), }, [752] = { - [sym_string] = STATE(991), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_type_parameters] = STATE(1041), + [sym_template_body] = STATE(245), + [sym_extends_clause] = STATE(246), + [sym_class_parameters] = STATE(984), + [anon_sym_package] = ACTIONS(412), + [anon_sym_import] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(412), + [anon_sym_case] = ACTIONS(412), + [anon_sym_object] = ACTIONS(412), + [anon_sym_class] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_val] = ACTIONS(412), + [anon_sym_var] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_def] = ACTIONS(412), + [anon_sym_abstract] = ACTIONS(412), + [anon_sym_final] = ACTIONS(412), + [anon_sym_sealed] = ACTIONS(412), + [anon_sym_implicit] = ACTIONS(412), + [anon_sym_lazy] = ACTIONS(412), + [anon_sym_override] = ACTIONS(412), + [anon_sym_private] = ACTIONS(412), + [anon_sym_protected] = ACTIONS(412), + [anon_sym_extends] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(110), + [sym_comment] = ACTIONS(34), }, [753] = { - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1042), + [sym_compound_type] = STATE(714), + [sym_infix_type] = STATE(714), + [sym_stable_type_identifier] = STATE(715), + [sym_stable_identifier] = STATE(716), + [sym_generic_type] = STATE(714), + [sym_function_type] = STATE(714), + [sym_parameter_types] = STATE(717), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1208), + [sym_comment] = ACTIONS(34), }, [754] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1618), - [anon_sym_match] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1622), - [sym_operator_identifier] = ACTIONS(1622), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(727), + [sym__expression] = STATE(1043), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), + [sym_comment] = ACTIONS(34), }, [755] = { - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1720), + [sym_comment] = ACTIONS(34), }, [756] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1624), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1045), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), + [sym_comment] = ACTIONS(34), }, [757] = { - [aux_sym_parameter_types_repeat1] = STATE(1002), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1626), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1046), + [sym_compound_type] = STATE(714), + [sym_infix_type] = STATE(714), + [sym_stable_type_identifier] = STATE(715), + [sym_stable_identifier] = STATE(716), + [sym_generic_type] = STATE(714), + [sym_function_type] = STATE(714), + [sym_parameter_types] = STATE(717), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1208), + [sym_comment] = ACTIONS(34), }, [758] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1324), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(727), + [sym__expression] = STATE(1047), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), + [sym_comment] = ACTIONS(34), }, [759] = { - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_COMMA] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(1722), + [sym_comment] = ACTIONS(34), }, [760] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1004), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1049), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), + [sym_comment] = ACTIONS(34), }, [761] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1006), - [anon_sym_RBRACE] = ACTIONS(1630), - [anon_sym_case] = ACTIONS(1338), + [sym__type] = STATE(1050), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), [sym_comment] = ACTIONS(34), }, [762] = { - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_COMMA] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(1724), + [sym_comment] = ACTIONS(34), }, [763] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [sym_parameters] = STATE(1052), + [sym_block] = STATE(424), + [anon_sym_package] = ACTIONS(719), + [anon_sym_import] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_case] = ACTIONS(719), + [anon_sym_object] = ACTIONS(719), + [anon_sym_class] = ACTIONS(719), + [anon_sym_trait] = ACTIONS(719), + [anon_sym_val] = ACTIONS(719), + [anon_sym_COLON] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_var] = ACTIONS(719), + [anon_sym_type] = ACTIONS(719), + [anon_sym_def] = ACTIONS(719), + [anon_sym_abstract] = ACTIONS(719), + [anon_sym_final] = ACTIONS(719), + [anon_sym_sealed] = ACTIONS(719), + [anon_sym_implicit] = ACTIONS(719), + [anon_sym_lazy] = ACTIONS(719), + [anon_sym_override] = ACTIONS(719), + [anon_sym_private] = ACTIONS(719), + [anon_sym_protected] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(162), + [sym_comment] = ACTIONS(34), }, [764] = { - [ts_builtin_sym_end] = ACTIONS(1632), - [anon_sym_package] = ACTIONS(1634), - [anon_sym_import] = ACTIONS(1634), - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_object] = ACTIONS(1634), - [anon_sym_class] = ACTIONS(1634), - [anon_sym_trait] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_val] = ACTIONS(1634), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_var] = ACTIONS(1634), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_def] = ACTIONS(1634), - [anon_sym_abstract] = ACTIONS(1634), - [anon_sym_final] = ACTIONS(1634), - [anon_sym_sealed] = ACTIONS(1634), - [anon_sym_implicit] = ACTIONS(1634), - [anon_sym_lazy] = ACTIONS(1634), - [anon_sym_override] = ACTIONS(1634), - [anon_sym_private] = ACTIONS(1634), - [anon_sym_protected] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_RBRACK] = ACTIONS(532), + [anon_sym_RPAREN] = ACTIONS(532), + [anon_sym_with] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1273), + [sym_comment] = ACTIONS(464), }, [765] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(1638), - [anon_sym_RPAREN] = ACTIONS(1624), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(1054), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1726), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [766] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(1010), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_with] = ACTIONS(837), + [sym_identifier] = ACTIONS(839), + [sym_operator_identifier] = ACTIONS(841), + [sym_comment] = ACTIONS(464), }, [767] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1011), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(892), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_RBRACK] = ACTIONS(1289), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_with] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1291), + [sym_comment] = ACTIONS(464), }, [768] = { - [sym__simple_string] = ACTIONS(1280), - [sym__string_start] = ACTIONS(1280), - [sym__multiline_string_start] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1284), - [sym_number] = ACTIONS(1282), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1295), + [anon_sym_RBRACK] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1295), + [anon_sym_with] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1297), + [sym_comment] = ACTIONS(464), }, [769] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(763), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(892), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [anon_sym_EQ_GT] = ACTIONS(1730), [sym_comment] = ACTIONS(34), }, [770] = { - [aux_sym_string_repeat1] = STATE(1013), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(1647), + [aux_sym_parameter_types_repeat1] = STATE(770), + [anon_sym_COMMA] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(1728), [sym_comment] = ACTIONS(34), }, [771] = { - [aux_sym_string_repeat2] = STATE(1014), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(1647), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_with] = ACTIONS(837), + [sym_identifier] = ACTIONS(839), + [sym_operator_identifier] = ACTIONS(841), + [sym_comment] = ACTIONS(464), }, [772] = { - [ts_builtin_sym_end] = ACTIONS(631), - [anon_sym_package] = ACTIONS(866), - [anon_sym_import] = ACTIONS(866), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_case] = ACTIONS(866), - [anon_sym_object] = ACTIONS(866), - [anon_sym_class] = ACTIONS(866), - [anon_sym_trait] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_val] = ACTIONS(866), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_var] = ACTIONS(866), - [anon_sym_type] = ACTIONS(866), - [anon_sym_def] = ACTIONS(866), - [anon_sym_abstract] = ACTIONS(866), - [anon_sym_final] = ACTIONS(866), - [anon_sym_sealed] = ACTIONS(866), - [anon_sym_implicit] = ACTIONS(866), - [anon_sym_lazy] = ACTIONS(866), - [anon_sym_override] = ACTIONS(866), - [anon_sym_private] = ACTIONS(866), - [anon_sym_protected] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_else] = ACTIONS(866), - [anon_sym_match] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1055), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [773] = { - [aux_sym_block_repeat1] = STATE(1017), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_LF] = ACTIONS(1651), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1735), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [774] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(1017), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_LF] = ACTIONS(1651), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(767), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [775] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1019), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1653), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(768), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [776] = { - [sym_block] = STATE(533), - [sym__expression] = STATE(1020), - [sym_if_expression] = STATE(533), - [sym_match_expression] = STATE(533), - [sym_assignment_expression] = STATE(533), - [sym_generic_function] = STATE(533), - [sym_call_expression] = STATE(533), - [sym_field_expression] = STATE(533), - [sym_instance_expression] = STATE(533), - [sym_infix_expression] = STATE(533), - [sym_prefix_expression] = STATE(533), - [sym_tuple_expression] = STATE(533), - [sym_parenthesized_expression] = STATE(533), - [sym_string_transform_expression] = STATE(533), - [sym_string] = STATE(533), - [sym__simple_string] = ACTIONS(898), - [sym__string_start] = ACTIONS(900), - [sym__multiline_string_start] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_if] = ACTIONS(908), - [anon_sym_new] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [sym_identifier] = ACTIONS(914), - [sym_number] = ACTIONS(916), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1741), [sym_comment] = ACTIONS(34), }, [777] = { - [sym_type_arguments] = STATE(787), - [sym_arguments] = STATE(788), - [ts_builtin_sym_end] = ACTIONS(918), - [anon_sym_package] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(920), - [anon_sym_object] = ACTIONS(920), - [anon_sym_class] = ACTIONS(920), - [anon_sym_trait] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_val] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_var] = ACTIONS(920), - [anon_sym_type] = ACTIONS(920), - [anon_sym_def] = ACTIONS(920), - [anon_sym_abstract] = ACTIONS(920), - [anon_sym_final] = ACTIONS(920), - [anon_sym_sealed] = ACTIONS(920), - [anon_sym_implicit] = ACTIONS(920), - [anon_sym_lazy] = ACTIONS(920), - [anon_sym_override] = ACTIONS(920), - [anon_sym_private] = ACTIONS(920), - [anon_sym_protected] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1058), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [778] = { - [sym_type_arguments] = STATE(787), - [sym_arguments] = STATE(788), - [ts_builtin_sym_end] = ACTIONS(924), - [anon_sym_package] = ACTIONS(926), - [anon_sym_import] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(926), - [anon_sym_object] = ACTIONS(926), - [anon_sym_class] = ACTIONS(926), - [anon_sym_trait] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_val] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_var] = ACTIONS(926), - [anon_sym_type] = ACTIONS(926), - [anon_sym_def] = ACTIONS(926), - [anon_sym_abstract] = ACTIONS(926), - [anon_sym_final] = ACTIONS(926), - [anon_sym_sealed] = ACTIONS(926), - [anon_sym_implicit] = ACTIONS(926), - [anon_sym_lazy] = ACTIONS(926), - [anon_sym_override] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_protected] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(926), - [anon_sym_match] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(1743), + [anon_sym_EQ] = ACTIONS(1745), + [anon_sym_RPAREN] = ACTIONS(1743), + [anon_sym_with] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), + [sym_operator_identifier] = ACTIONS(1315), + [sym_comment] = ACTIONS(464), }, [779] = { - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_package] = ACTIONS(932), - [anon_sym_import] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_case] = ACTIONS(932), - [anon_sym_object] = ACTIONS(932), - [anon_sym_class] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_val] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_var] = ACTIONS(932), - [anon_sym_type] = ACTIONS(932), - [anon_sym_def] = ACTIONS(932), - [anon_sym_abstract] = ACTIONS(932), - [anon_sym_final] = ACTIONS(932), - [anon_sym_sealed] = ACTIONS(932), - [anon_sym_implicit] = ACTIONS(932), - [anon_sym_lazy] = ACTIONS(932), - [anon_sym_override] = ACTIONS(932), - [anon_sym_private] = ACTIONS(932), - [anon_sym_protected] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1743), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [780] = { - [sym_identifier] = ACTIONS(1655), + [sym_identifier] = ACTIONS(1747), [sym_comment] = ACTIONS(34), }, [781] = { - [sym__type] = STATE(1022), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym__type] = STATE(1061), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [782] = { - [sym_block] = STATE(533), - [sym__expression] = STATE(1023), - [sym_if_expression] = STATE(533), - [sym_match_expression] = STATE(533), - [sym_assignment_expression] = STATE(533), - [sym_generic_function] = STATE(533), - [sym_call_expression] = STATE(533), - [sym_field_expression] = STATE(533), - [sym_instance_expression] = STATE(533), - [sym_infix_expression] = STATE(533), - [sym_prefix_expression] = STATE(533), - [sym_tuple_expression] = STATE(533), - [sym_parenthesized_expression] = STATE(533), - [sym_string_transform_expression] = STATE(533), - [sym_string] = STATE(533), - [sym__simple_string] = ACTIONS(898), - [sym__string_start] = ACTIONS(900), - [sym__multiline_string_start] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_if] = ACTIONS(908), - [anon_sym_new] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [sym_identifier] = ACTIONS(914), - [sym_number] = ACTIONS(916), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_with] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [783] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1025), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym_block] = STATE(340), + [sym__expression] = STATE(1062), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [784] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(1026), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), + [sym__type] = STATE(1063), + [sym_compound_type] = STATE(501), + [sym_infix_type] = STATE(501), + [sym_stable_type_identifier] = STATE(502), + [sym_stable_identifier] = STATE(503), + [sym_generic_type] = STATE(501), + [sym_function_type] = STATE(501), + [sym_parameter_types] = STATE(504), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(865), [sym_comment] = ACTIONS(34), }, [785] = { - [sym_case_block] = STATE(1028), - [anon_sym_LBRACE] = ACTIONS(1659), + [sym__type] = STATE(1064), + [sym_compound_type] = STATE(501), + [sym_infix_type] = STATE(501), + [sym_stable_type_identifier] = STATE(502), + [sym_stable_identifier] = STATE(503), + [sym_generic_type] = STATE(501), + [sym_function_type] = STATE(501), + [sym_parameter_types] = STATE(504), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(865), [sym_comment] = ACTIONS(34), }, [786] = { - [sym_block] = STATE(533), - [sym__expression] = STATE(1029), - [sym_if_expression] = STATE(533), - [sym_match_expression] = STATE(533), - [sym_assignment_expression] = STATE(533), - [sym_generic_function] = STATE(533), - [sym_call_expression] = STATE(533), - [sym_field_expression] = STATE(533), - [sym_instance_expression] = STATE(533), - [sym_infix_expression] = STATE(533), - [sym_prefix_expression] = STATE(533), - [sym_tuple_expression] = STATE(533), - [sym_parenthesized_expression] = STATE(533), - [sym_string_transform_expression] = STATE(533), - [sym_string] = STATE(533), - [sym__simple_string] = ACTIONS(898), - [sym__string_start] = ACTIONS(900), - [sym__multiline_string_start] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_if] = ACTIONS(908), - [anon_sym_new] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [sym_identifier] = ACTIONS(914), - [sym_number] = ACTIONS(916), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_with] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [787] = { - [ts_builtin_sym_end] = ACTIONS(942), - [anon_sym_package] = ACTIONS(944), - [anon_sym_import] = ACTIONS(944), - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_case] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_class] = ACTIONS(944), - [anon_sym_trait] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_val] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_var] = ACTIONS(944), - [anon_sym_type] = ACTIONS(944), - [anon_sym_def] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(944), - [anon_sym_final] = ACTIONS(944), - [anon_sym_sealed] = ACTIONS(944), - [anon_sym_implicit] = ACTIONS(944), - [anon_sym_lazy] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_else] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1065), + [sym_compound_type] = STATE(501), + [sym_infix_type] = STATE(501), + [sym_stable_type_identifier] = STATE(502), + [sym_stable_identifier] = STATE(503), + [sym_generic_type] = STATE(501), + [sym_function_type] = STATE(501), + [sym_parameter_types] = STATE(504), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(865), + [sym_comment] = ACTIONS(34), }, [788] = { - [ts_builtin_sym_end] = ACTIONS(948), - [anon_sym_package] = ACTIONS(950), - [anon_sym_import] = ACTIONS(950), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_case] = ACTIONS(950), - [anon_sym_object] = ACTIONS(950), - [anon_sym_class] = ACTIONS(950), - [anon_sym_trait] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_val] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_var] = ACTIONS(950), - [anon_sym_type] = ACTIONS(950), - [anon_sym_def] = ACTIONS(950), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_final] = ACTIONS(950), - [anon_sym_sealed] = ACTIONS(950), - [anon_sym_implicit] = ACTIONS(950), - [anon_sym_lazy] = ACTIONS(950), - [anon_sym_override] = ACTIONS(950), - [anon_sym_private] = ACTIONS(950), - [anon_sym_protected] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_else] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [789] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1749), + [sym_comment] = ACTIONS(34), }, [790] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1661), + [sym__string_middle] = ACTIONS(1577), + [sym__string_end] = ACTIONS(1577), [sym_comment] = ACTIONS(34), }, [791] = { - [ts_builtin_sym_end] = ACTIONS(1663), - [anon_sym_package] = ACTIONS(1665), - [anon_sym_import] = ACTIONS(1665), - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1665), - [anon_sym_object] = ACTIONS(1665), - [anon_sym_class] = ACTIONS(1665), - [anon_sym_trait] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_val] = ACTIONS(1665), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_var] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_def] = ACTIONS(1665), - [anon_sym_abstract] = ACTIONS(1665), - [anon_sym_final] = ACTIONS(1665), - [anon_sym_sealed] = ACTIONS(1665), - [anon_sym_implicit] = ACTIONS(1665), - [anon_sym_lazy] = ACTIONS(1665), - [anon_sym_override] = ACTIONS(1665), - [anon_sym_private] = ACTIONS(1665), - [anon_sym_protected] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_match] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [792] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(1669), + [sym__multiline_string_middle] = ACTIONS(1577), + [sym__multiline_string_end] = ACTIONS(1577), [sym_comment] = ACTIONS(34), }, [793] = { - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_package] = ACTIONS(1673), - [anon_sym_import] = ACTIONS(1673), - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_object] = ACTIONS(1673), - [anon_sym_class] = ACTIONS(1673), - [anon_sym_trait] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_val] = ACTIONS(1673), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_var] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_def] = ACTIONS(1673), - [anon_sym_abstract] = ACTIONS(1673), - [anon_sym_final] = ACTIONS(1673), - [anon_sym_sealed] = ACTIONS(1673), - [anon_sym_implicit] = ACTIONS(1673), - [anon_sym_lazy] = ACTIONS(1673), - [anon_sym_override] = ACTIONS(1673), - [anon_sym_private] = ACTIONS(1673), - [anon_sym_protected] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_match] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [794] = { - [sym_stable_type_identifier] = STATE(33), - [sym_stable_identifier] = STATE(34), - [sym_case_class_pattern] = STATE(1033), - [sym_alternative_pattern] = STATE(1033), - [sym_typed_pattern] = STATE(1033), - [sym_tuple_pattern] = STATE(1033), - [sym_parenthesized_pattern] = STATE(1033), - [sym_wildcard] = STATE(1033), - [sym_string] = STATE(1033), - [sym__simple_string] = ACTIONS(50), - [sym__string_start] = ACTIONS(52), - [sym__multiline_string_start] = ACTIONS(54), - [anon_sym__] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(58), - [sym_identifier] = ACTIONS(1677), - [sym_number] = ACTIONS(1679), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(532), + [anon_sym_with] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [795] = { - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_case] = ACTIONS(1681), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(1070), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1755), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [796] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_COLON] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_with] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [797] = { - [anon_sym_COLON] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(1295), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1295), + [anon_sym_with] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [798] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1685), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_with] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(1303), + [sym_identifier] = ACTIONS(907), + [sym_operator_identifier] = ACTIONS(907), + [sym_comment] = ACTIONS(464), }, [799] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1568), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1735), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_COLON] = ACTIONS(1737), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [800] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1687), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1757), [sym_comment] = ACTIONS(34), }, [801] = { - [anon_sym_DOT] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1590), - [anon_sym_EQ] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_match] = ACTIONS(1590), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_LF] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(881), + [anon_sym_package] = ACTIONS(883), + [anon_sym_import] = ACTIONS(883), + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_case] = ACTIONS(883), + [anon_sym_object] = ACTIONS(883), + [anon_sym_class] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_val] = ACTIONS(883), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_var] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_def] = ACTIONS(883), + [anon_sym_abstract] = ACTIONS(883), + [anon_sym_final] = ACTIONS(883), + [anon_sym_sealed] = ACTIONS(883), + [anon_sym_implicit] = ACTIONS(883), + [anon_sym_lazy] = ACTIONS(883), + [anon_sym_override] = ACTIONS(883), + [anon_sym_private] = ACTIONS(883), + [anon_sym_protected] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_match] = ACTIONS(883), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), }, [802] = { - [anon_sym_DOT] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_LF] = ACTIONS(1689), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1081), + [sym__expression] = STATE(1082), + [sym_if_expression] = STATE(1081), + [sym_match_expression] = STATE(1081), + [sym_case_block] = STATE(1081), + [sym_assignment_expression] = STATE(1081), + [sym_generic_function] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_field_expression] = STATE(1081), + [sym_instance_expression] = STATE(1081), + [sym_infix_expression] = STATE(1081), + [sym_prefix_expression] = STATE(1081), + [sym_tuple_expression] = STATE(1081), + [sym_parenthesized_expression] = STATE(1081), + [sym_string_transform_expression] = STATE(1081), + [sym_string] = STATE(1081), + [sym__simple_string] = ACTIONS(1761), + [sym__string_start] = ACTIONS(1763), + [sym__multiline_string_start] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [sym_number] = ACTIONS(1779), + [sym_comment] = ACTIONS(34), }, [803] = { - [sym_renamed_identifier] = STATE(1039), - [sym_identifier] = ACTIONS(1691), + [sym__type] = STATE(1084), + [sym_compound_type] = STATE(1085), + [sym_infix_type] = STATE(1085), + [sym_stable_type_identifier] = STATE(1086), + [sym_stable_identifier] = STATE(1087), + [sym_generic_type] = STATE(1085), + [sym_function_type] = STATE(1085), + [sym_parameter_types] = STATE(1088), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1781), [sym_comment] = ACTIONS(34), }, [804] = { - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LF] = ACTIONS(1693), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1098), + [sym__expression] = STATE(1099), + [sym_if_expression] = STATE(1098), + [sym_match_expression] = STATE(1098), + [sym_case_block] = STATE(1098), + [sym_assignment_expression] = STATE(1098), + [sym_generic_function] = STATE(1098), + [sym_call_expression] = STATE(1098), + [sym_field_expression] = STATE(1098), + [sym_instance_expression] = STATE(1098), + [sym_infix_expression] = STATE(1098), + [sym_prefix_expression] = STATE(1098), + [sym_tuple_expression] = STATE(1098), + [sym_parenthesized_expression] = STATE(1098), + [sym_string_transform_expression] = STATE(1098), + [sym_string] = STATE(1098), + [sym__simple_string] = ACTIONS(1783), + [sym__string_start] = ACTIONS(1785), + [sym__multiline_string_start] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [sym_number] = ACTIONS(1801), + [sym_comment] = ACTIONS(34), }, [805] = { - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_LF] = ACTIONS(1695), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(1803), + [sym_comment] = ACTIONS(34), }, [806] = { - [anon_sym_DOT] = ACTIONS(1594), - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_EQ] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_match] = ACTIONS(1594), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_LF] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1577), + [anon_sym_package] = ACTIONS(1805), + [anon_sym_import] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_case] = ACTIONS(1805), + [anon_sym_object] = ACTIONS(1805), + [anon_sym_class] = ACTIONS(1805), + [anon_sym_trait] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_val] = ACTIONS(1805), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_var] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_abstract] = ACTIONS(1805), + [anon_sym_final] = ACTIONS(1805), + [anon_sym_sealed] = ACTIONS(1805), + [anon_sym_implicit] = ACTIONS(1805), + [anon_sym_lazy] = ACTIONS(1805), + [anon_sym_override] = ACTIONS(1805), + [anon_sym_private] = ACTIONS(1805), + [anon_sym_protected] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_match] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), }, [807] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [808] = { - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_LF] = ACTIONS(1699), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_match] = ACTIONS(514), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), }, [809] = { - [sym_template_body] = STATE(1041), - [sym_extends_clause] = STATE(1042), - [sym_class_parameters] = STATE(1043), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_extends] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_LF] = ACTIONS(1701), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(1811), + [sym_comment] = ACTIONS(34), }, [810] = { - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_LF] = ACTIONS(1701), - [sym_comment] = ACTIONS(432), - }, - [811] = { - [sym_template_body] = STATE(1041), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_LF] = ACTIONS(1701), - [sym_comment] = ACTIONS(432), - }, - [812] = { - [sym_template_body] = STATE(1041), - [sym_extends_clause] = STATE(1042), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_extends] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_LF] = ACTIONS(1701), - [sym_comment] = ACTIONS(432), - }, - [813] = { - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_LF] = ACTIONS(1703), - [sym_comment] = ACTIONS(432), - }, - [814] = { - [sym_package_clause] = STATE(14), - [sym_import_declaration] = STATE(14), - [sym_object_definition] = STATE(14), - [sym_class_definition] = STATE(14), - [sym_trait_definition] = STATE(14), - [sym_val_definition] = STATE(14), - [sym_val_declaration] = STATE(14), - [sym_var_declaration] = STATE(14), - [sym_var_definition] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_function_definition] = STATE(14), - [sym_function_declaration] = STATE(14), - [sym_modifiers] = STATE(105), - [aux_sym_compilation_unit_repeat1] = STATE(243), - [aux_sym_modifiers_repeat1] = STATE(17), - [anon_sym_package] = ACTIONS(12), - [anon_sym_import] = ACTIONS(14), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_case] = ACTIONS(214), - [anon_sym_object] = ACTIONS(18), - [anon_sym_class] = ACTIONS(216), - [anon_sym_trait] = ACTIONS(22), - [anon_sym_val] = ACTIONS(218), - [anon_sym_var] = ACTIONS(220), - [anon_sym_type] = ACTIONS(222), - [anon_sym_def] = ACTIONS(224), - [anon_sym_abstract] = ACTIONS(32), - [anon_sym_final] = ACTIONS(32), - [anon_sym_sealed] = ACTIONS(32), - [anon_sym_implicit] = ACTIONS(32), - [anon_sym_lazy] = ACTIONS(32), - [anon_sym_override] = ACTIONS(32), - [anon_sym_private] = ACTIONS(32), - [anon_sym_protected] = ACTIONS(32), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(1811), + [sym_comment] = ACTIONS(34), + }, + [811] = { + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), + }, + [812] = { + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, + [813] = { + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1817), + [anon_sym_LF] = ACTIONS(1817), + [sym_comment] = ACTIONS(464), + }, + [814] = { + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), + }, [815] = { - [aux_sym_type_parameters_repeat1] = STATE(1046), - [anon_sym_COMMA] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(1707), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_COMMA] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_RPAREN] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), }, [816] = { - [sym_type_arguments] = STATE(1049), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_with] = ACTIONS(430), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LF] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(34), }, [817] = { - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_with] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [sym_operator_identifier] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_LF] = ACTIONS(1713), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_RPAREN] = ACTIONS(114), + [anon_sym_else] = ACTIONS(116), + [anon_sym_match] = ACTIONS(116), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [818] = { - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_with] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1106), + [anon_sym_DOLLAR] = ACTIONS(118), + [sym_comment] = ACTIONS(34), }, [819] = { - [sym_type_arguments] = STATE(1052), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_with] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1107), + [anon_sym_DOLLAR] = ACTIONS(120), + [sym_comment] = ACTIONS(34), }, [820] = { - [anon_sym_DOT] = ACTIONS(1719), + [sym_package_clause] = STATE(1109), + [sym_import_declaration] = STATE(1109), + [sym_object_definition] = STATE(1109), + [sym_class_definition] = STATE(1109), + [sym_trait_definition] = STATE(1109), + [sym_val_definition] = STATE(1109), + [sym_val_declaration] = STATE(1109), + [sym_var_declaration] = STATE(1109), + [sym_var_definition] = STATE(1109), + [sym_type_definition] = STATE(1109), + [sym_function_definition] = STATE(1109), + [sym_function_declaration] = STATE(1109), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(1110), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(1111), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [821] = { - [anon_sym_EQ_GT] = ACTIONS(1721), + [sym_block] = STATE(340), + [sym__expression] = STATE(1112), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [822] = { - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_extends] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_LF] = ACTIONS(1723), - [sym_comment] = ACTIONS(432), + [sym_parenthesized_expression] = STATE(1113), + [anon_sym_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(34), }, [823] = { - [aux_sym_class_parameters_repeat1] = STATE(1055), - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(1725), + [sym_block] = STATE(826), + [sym__expression] = STATE(1114), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), [sym_comment] = ACTIONS(34), }, [824] = { - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_LF] = ACTIONS(1727), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(826), + [sym__expression] = STATE(1115), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), }, [825] = { - [sym_template_body] = STATE(1056), - [anon_sym_LBRACE] = ACTIONS(1000), - [sym_comment] = ACTIONS(34), + [sym_string] = STATE(1116), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(582), + [anon_sym_else] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [826] = { - [sym_type_arguments] = STATE(1059), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_COLON] = ACTIONS(430), - [anon_sym_EQ] = ACTIONS(430), - [anon_sym_with] = ACTIONS(430), - [anon_sym_PIPE] = ACTIONS(430), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LF] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(582), + [anon_sym_else] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [827] = { - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_COLON] = ACTIONS(1735), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1741), - [sym_operator_identifier] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1733), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1833), + [sym_identifier] = ACTIONS(1835), + [sym_operator_identifier] = ACTIONS(1835), + [sym_comment] = ACTIONS(464), }, [828] = { - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_EQ] = ACTIONS(446), - [anon_sym_with] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_COMMA] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), }, [829] = { - [sym_type_arguments] = STATE(1063), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_EQ] = ACTIONS(446), - [anon_sym_with] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [830] = { - [anon_sym_DOT] = ACTIONS(1743), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(1127), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1839), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [831] = { - [anon_sym_EQ_GT] = ACTIONS(1745), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [832] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1747), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), }, [833] = { - [sym__type] = STATE(1065), - [sym_compound_type] = STATE(841), - [sym_infix_type] = STATE(841), - [sym_stable_type_identifier] = STATE(842), - [sym_stable_identifier] = STATE(843), - [sym_generic_type] = STATE(841), - [sym_function_type] = STATE(841), - [sym_parameter_types] = STATE(844), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1402), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1129), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [834] = { - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_with] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(589), - [sym_operator_identifier] = ACTIONS(589), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(549), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [835] = { - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_COLON] = ACTIONS(1735), - [anon_sym_EQ] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1741), - [sym_operator_identifier] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1751), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_RPAREN] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), }, [836] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_LF] = ACTIONS(1755), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), }, [837] = { - [sym__type] = STATE(1067), - [sym_compound_type] = STATE(841), - [sym_infix_type] = STATE(841), - [sym_stable_type_identifier] = STATE(842), - [sym_stable_identifier] = STATE(843), - [sym_generic_type] = STATE(841), - [sym_function_type] = STATE(841), - [sym_parameter_types] = STATE(844), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1402), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), }, [838] = { - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(1757), - [anon_sym_with] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(589), - [sym_operator_identifier] = ACTIONS(589), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1845), + [anon_sym_package] = ACTIONS(1847), + [anon_sym_import] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_case] = ACTIONS(1847), + [anon_sym_object] = ACTIONS(1847), + [anon_sym_class] = ACTIONS(1847), + [anon_sym_trait] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_val] = ACTIONS(1847), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_var] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_abstract] = ACTIONS(1847), + [anon_sym_final] = ACTIONS(1847), + [anon_sym_sealed] = ACTIONS(1847), + [anon_sym_implicit] = ACTIONS(1847), + [anon_sym_lazy] = ACTIONS(1847), + [anon_sym_override] = ACTIONS(1847), + [anon_sym_private] = ACTIONS(1847), + [anon_sym_protected] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), }, [839] = { - [sym_type_arguments] = STATE(1070), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_with] = ACTIONS(430), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LF] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(1851), + [anon_sym_RPAREN] = ACTIONS(1837), + [sym_comment] = ACTIONS(34), }, [840] = { - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_with] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [sym_operator_identifier] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1763), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(826), + [sym__expression] = STATE(1134), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), }, [841] = { - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_with] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(1135), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(962), + [anon_sym_new] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [842] = { - [sym_type_arguments] = STATE(1073), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_with] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym__simple_string] = ACTIONS(1413), + [sym__string_start] = ACTIONS(1413), + [sym__multiline_string_start] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_new] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1417), + [sym_number] = ACTIONS(1415), + [sym_comment] = ACTIONS(34), }, [843] = { - [anon_sym_DOT] = ACTIONS(1769), + [sym_block] = STATE(340), + [sym__expression] = STATE(836), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(962), + [anon_sym_new] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [844] = { - [anon_sym_EQ_GT] = ACTIONS(1771), + [aux_sym_string_repeat1] = STATE(1137), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(1860), [sym_comment] = ACTIONS(34), }, [845] = { - [sym__type] = STATE(1075), - [sym_compound_type] = STATE(841), - [sym_infix_type] = STATE(841), - [sym_stable_type_identifier] = STATE(842), - [sym_stable_identifier] = STATE(843), - [sym_generic_type] = STATE(841), - [sym_function_type] = STATE(841), - [sym_parameter_types] = STATE(844), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1402), + [aux_sym_string_repeat2] = STATE(1138), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(1860), [sym_comment] = ACTIONS(34), }, [846] = { - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_LF] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(665), + [anon_sym_package] = ACTIONS(922), + [anon_sym_import] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_case] = ACTIONS(922), + [anon_sym_object] = ACTIONS(922), + [anon_sym_class] = ACTIONS(922), + [anon_sym_trait] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_val] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_var] = ACTIONS(922), + [anon_sym_type] = ACTIONS(922), + [anon_sym_def] = ACTIONS(922), + [anon_sym_abstract] = ACTIONS(922), + [anon_sym_final] = ACTIONS(922), + [anon_sym_sealed] = ACTIONS(922), + [anon_sym_implicit] = ACTIONS(922), + [anon_sym_lazy] = ACTIONS(922), + [anon_sym_override] = ACTIONS(922), + [anon_sym_private] = ACTIONS(922), + [anon_sym_protected] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_else] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [847] = { - [aux_sym_block_repeat1] = STATE(1078), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_LF] = ACTIONS(1775), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_LF] = ACTIONS(1864), + [sym_comment] = ACTIONS(464), }, [848] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(1078), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_LF] = ACTIONS(1775), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(1141), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_LF] = ACTIONS(1864), + [sym_comment] = ACTIONS(464), }, [849] = { - [sym_type_arguments] = STATE(1081), - [anon_sym_DOT] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_EQ] = ACTIONS(430), - [anon_sym_with] = ACTIONS(430), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LF] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [850] = { - [sym_block] = STATE(1085), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_EQ] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [sym_operator_identifier] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_LF] = ACTIONS(1781), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1144), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [851] = { - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_EQ] = ACTIONS(446), - [anon_sym_with] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(579), + [sym__expression] = STATE(1145), + [sym_if_expression] = STATE(579), + [sym_match_expression] = STATE(579), + [sym_case_block] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_generic_function] = STATE(579), + [sym_call_expression] = STATE(579), + [sym_field_expression] = STATE(579), + [sym_instance_expression] = STATE(579), + [sym_infix_expression] = STATE(579), + [sym_prefix_expression] = STATE(579), + [sym_tuple_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(579), + [sym_string_transform_expression] = STATE(579), + [sym_string] = STATE(579), + [sym__simple_string] = ACTIONS(968), + [sym__string_start] = ACTIONS(970), + [sym__multiline_string_start] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_if] = ACTIONS(978), + [anon_sym_new] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [sym_number] = ACTIONS(986), + [sym_comment] = ACTIONS(34), }, [852] = { - [sym_type_arguments] = STATE(1086), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_EQ] = ACTIONS(446), - [anon_sym_with] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(862), + [sym_arguments] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(988), + [anon_sym_package] = ACTIONS(990), + [anon_sym_import] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(990), + [anon_sym_object] = ACTIONS(990), + [anon_sym_class] = ACTIONS(990), + [anon_sym_trait] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_val] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_var] = ACTIONS(990), + [anon_sym_type] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_abstract] = ACTIONS(990), + [anon_sym_final] = ACTIONS(990), + [anon_sym_sealed] = ACTIONS(990), + [anon_sym_implicit] = ACTIONS(990), + [anon_sym_lazy] = ACTIONS(990), + [anon_sym_override] = ACTIONS(990), + [anon_sym_private] = ACTIONS(990), + [anon_sym_protected] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [853] = { - [anon_sym_DOT] = ACTIONS(1789), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(862), + [sym_arguments] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(994), + [anon_sym_package] = ACTIONS(996), + [anon_sym_import] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_class] = ACTIONS(996), + [anon_sym_trait] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_val] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_var] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_def] = ACTIONS(996), + [anon_sym_abstract] = ACTIONS(996), + [anon_sym_final] = ACTIONS(996), + [anon_sym_sealed] = ACTIONS(996), + [anon_sym_implicit] = ACTIONS(996), + [anon_sym_lazy] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [854] = { - [anon_sym_EQ_GT] = ACTIONS(1791), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1000), + [anon_sym_package] = ACTIONS(1002), + [anon_sym_import] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_class] = ACTIONS(1002), + [anon_sym_trait] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_val] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_var] = ACTIONS(1002), + [anon_sym_type] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(1002), + [anon_sym_final] = ACTIONS(1002), + [anon_sym_sealed] = ACTIONS(1002), + [anon_sym_implicit] = ACTIONS(1002), + [anon_sym_lazy] = ACTIONS(1002), + [anon_sym_override] = ACTIONS(1002), + [anon_sym_private] = ACTIONS(1002), + [anon_sym_protected] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [855] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_LF] = ACTIONS(1793), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(1870), + [sym_comment] = ACTIONS(34), }, [856] = { - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_COLON] = ACTIONS(1795), - [anon_sym_EQ] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LF] = ACTIONS(1795), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1147), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [857] = { - [aux_sym_parameters_repeat1] = STATE(1089), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(1797), + [sym_block] = STATE(579), + [sym__expression] = STATE(1148), + [sym_if_expression] = STATE(579), + [sym_match_expression] = STATE(579), + [sym_case_block] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_generic_function] = STATE(579), + [sym_call_expression] = STATE(579), + [sym_field_expression] = STATE(579), + [sym_instance_expression] = STATE(579), + [sym_infix_expression] = STATE(579), + [sym_prefix_expression] = STATE(579), + [sym_tuple_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(579), + [sym_string_transform_expression] = STATE(579), + [sym_string] = STATE(579), + [sym__simple_string] = ACTIONS(968), + [sym__string_start] = ACTIONS(970), + [sym__multiline_string_start] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_if] = ACTIONS(978), + [anon_sym_new] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [sym_number] = ACTIONS(986), [sym_comment] = ACTIONS(34), }, [858] = { - [sym__type] = STATE(1090), - [sym_compound_type] = STATE(851), - [sym_infix_type] = STATE(851), - [sym_stable_type_identifier] = STATE(852), - [sym_stable_identifier] = STATE(853), - [sym_generic_type] = STATE(851), - [sym_function_type] = STATE(851), - [sym_parameter_types] = STATE(854), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1408), + [sym_block] = STATE(340), + [sym__expression] = STATE(1150), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [859] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(1091), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_block] = STATE(164), + [sym__expression] = STATE(1151), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), [sym_comment] = ACTIONS(34), }, [860] = { - [sym_block] = STATE(1085), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_COLON] = ACTIONS(1799), - [anon_sym_EQ] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_LF] = ACTIONS(1781), - [sym_comment] = ACTIONS(432), + [sym_case_block] = STATE(1153), + [anon_sym_LBRACE] = ACTIONS(1874), + [sym_comment] = ACTIONS(34), }, [861] = { - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_LF] = ACTIONS(1793), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(579), + [sym__expression] = STATE(1154), + [sym_if_expression] = STATE(579), + [sym_match_expression] = STATE(579), + [sym_case_block] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_generic_function] = STATE(579), + [sym_call_expression] = STATE(579), + [sym_field_expression] = STATE(579), + [sym_instance_expression] = STATE(579), + [sym_infix_expression] = STATE(579), + [sym_prefix_expression] = STATE(579), + [sym_tuple_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(579), + [sym_string_transform_expression] = STATE(579), + [sym_string] = STATE(579), + [sym__simple_string] = ACTIONS(968), + [sym__string_start] = ACTIONS(970), + [sym__multiline_string_start] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_if] = ACTIONS(978), + [anon_sym_new] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [sym_number] = ACTIONS(986), + [sym_comment] = ACTIONS(34), }, [862] = { - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_EQ] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_match] = ACTIONS(1636), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LF] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_package] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_object] = ACTIONS(1014), + [anon_sym_class] = ACTIONS(1014), + [anon_sym_trait] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_val] = ACTIONS(1014), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_var] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_abstract] = ACTIONS(1014), + [anon_sym_final] = ACTIONS(1014), + [anon_sym_sealed] = ACTIONS(1014), + [anon_sym_implicit] = ACTIONS(1014), + [anon_sym_lazy] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [863] = { - [aux_sym_string_repeat1] = STATE(1094), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(1801), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(1155), + [sym_case_block] = STATE(1155), + [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_package] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_object] = ACTIONS(1020), + [anon_sym_class] = ACTIONS(1020), + [anon_sym_trait] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_val] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_var] = ACTIONS(1020), + [anon_sym_type] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_abstract] = ACTIONS(1020), + [anon_sym_final] = ACTIONS(1020), + [anon_sym_sealed] = ACTIONS(1020), + [anon_sym_implicit] = ACTIONS(1020), + [anon_sym_lazy] = ACTIONS(1020), + [anon_sym_override] = ACTIONS(1020), + [anon_sym_private] = ACTIONS(1020), + [anon_sym_protected] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [864] = { - [aux_sym_string_repeat2] = STATE(1095), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(1801), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1735), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [865] = { - [anon_sym_DOT] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_EQ] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_else] = ACTIONS(868), - [anon_sym_match] = ACTIONS(868), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_LF] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1878), + [sym_comment] = ACTIONS(34), }, [866] = { - [aux_sym_block_repeat1] = STATE(1098), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_LF] = ACTIONS(1805), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1880), + [anon_sym_package] = ACTIONS(1882), + [anon_sym_import] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_object] = ACTIONS(1882), + [anon_sym_class] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_val] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_var] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_def] = ACTIONS(1882), + [anon_sym_abstract] = ACTIONS(1882), + [anon_sym_final] = ACTIONS(1882), + [anon_sym_sealed] = ACTIONS(1882), + [anon_sym_implicit] = ACTIONS(1882), + [anon_sym_lazy] = ACTIONS(1882), + [anon_sym_override] = ACTIONS(1882), + [anon_sym_private] = ACTIONS(1882), + [anon_sym_protected] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), }, [867] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(1098), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_LF] = ACTIONS(1805), - [sym_comment] = ACTIONS(432), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(1886), + [sym_comment] = ACTIONS(34), }, [868] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1100), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1888), + [anon_sym_package] = ACTIONS(1890), + [anon_sym_import] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_object] = ACTIONS(1890), + [anon_sym_class] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_val] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_var] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_abstract] = ACTIONS(1890), + [anon_sym_final] = ACTIONS(1890), + [anon_sym_sealed] = ACTIONS(1890), + [anon_sym_implicit] = ACTIONS(1890), + [anon_sym_lazy] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), }, [869] = { - [sym_block] = STATE(607), - [sym__expression] = STATE(1101), - [sym_if_expression] = STATE(607), - [sym_match_expression] = STATE(607), - [sym_assignment_expression] = STATE(607), - [sym_generic_function] = STATE(607), - [sym_call_expression] = STATE(607), - [sym_field_expression] = STATE(607), - [sym_instance_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_tuple_expression] = STATE(607), - [sym_parenthesized_expression] = STATE(607), - [sym_string_transform_expression] = STATE(607), - [sym_string] = STATE(607), - [sym__simple_string] = ACTIONS(1038), - [sym__string_start] = ACTIONS(1040), - [sym__multiline_string_start] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1054), - [sym_number] = ACTIONS(1056), - [sym_comment] = ACTIONS(34), + [anon_sym_COLON] = ACTIONS(1737), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [870] = { - [sym_type_arguments] = STATE(880), - [sym_arguments] = STATE(881), - [anon_sym_DOT] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(922), - [anon_sym_match] = ACTIONS(922), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_LF] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1894), + [sym_comment] = ACTIONS(34), }, [871] = { - [sym_type_arguments] = STATE(880), - [sym_arguments] = STATE(881), - [anon_sym_DOT] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_LF] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1735), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1737), + [sym_comment] = ACTIONS(464), }, [872] = { - [anon_sym_DOT] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_match] = ACTIONS(934), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_LF] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1896), + [sym_comment] = ACTIONS(34), }, [873] = { - [sym_identifier] = ACTIONS(1809), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_LF] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), }, [874] = { - [sym__type] = STATE(1103), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_renamed_identifier] = STATE(1161), + [sym_identifier] = ACTIONS(1898), [sym_comment] = ACTIONS(34), }, [875] = { - [sym_block] = STATE(607), - [sym__expression] = STATE(1104), - [sym_if_expression] = STATE(607), - [sym_match_expression] = STATE(607), - [sym_assignment_expression] = STATE(607), - [sym_generic_function] = STATE(607), - [sym_call_expression] = STATE(607), - [sym_field_expression] = STATE(607), - [sym_instance_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_tuple_expression] = STATE(607), - [sym_parenthesized_expression] = STATE(607), - [sym_string_transform_expression] = STATE(607), - [sym_string] = STATE(607), - [sym__simple_string] = ACTIONS(1038), - [sym__string_start] = ACTIONS(1040), - [sym__multiline_string_start] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1054), - [sym_number] = ACTIONS(1056), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1900), + [sym_comment] = ACTIONS(464), }, [876] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1106), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_LF] = ACTIONS(1902), + [sym_comment] = ACTIONS(464), }, [877] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(1107), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_LF] = ACTIONS(1904), + [sym_comment] = ACTIONS(464), }, [878] = { - [sym_case_block] = STATE(1109), - [anon_sym_LBRACE] = ACTIONS(1813), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_EQ] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_LF] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), }, [879] = { - [sym_block] = STATE(607), - [sym__expression] = STATE(1110), - [sym_if_expression] = STATE(607), - [sym_match_expression] = STATE(607), - [sym_assignment_expression] = STATE(607), - [sym_generic_function] = STATE(607), - [sym_call_expression] = STATE(607), - [sym_field_expression] = STATE(607), - [sym_instance_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_tuple_expression] = STATE(607), - [sym_parenthesized_expression] = STATE(607), - [sym_string_transform_expression] = STATE(607), - [sym_string] = STATE(607), - [sym__simple_string] = ACTIONS(1038), - [sym__string_start] = ACTIONS(1040), - [sym__multiline_string_start] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1054), - [sym_number] = ACTIONS(1056), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [880] = { - [anon_sym_DOT] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(946), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_match] = ACTIONS(946), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_LF] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_LF] = ACTIONS(1908), + [sym_comment] = ACTIONS(464), }, [881] = { - [anon_sym_DOT] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_EQ] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_LF] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(1163), + [sym_extends_clause] = STATE(1164), + [sym_class_parameters] = STATE(1165), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_extends] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_LF] = ACTIONS(1910), + [sym_comment] = ACTIONS(464), }, [882] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [anon_sym_package] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_object] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_trait] = ACTIONS(1815), - [anon_sym_val] = ACTIONS(1815), - [anon_sym_var] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_def] = ACTIONS(1815), - [anon_sym_abstract] = ACTIONS(1815), - [anon_sym_final] = ACTIONS(1815), - [anon_sym_sealed] = ACTIONS(1815), - [anon_sym_implicit] = ACTIONS(1815), - [anon_sym_lazy] = ACTIONS(1815), - [anon_sym_override] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_LF] = ACTIONS(1910), + [sym_comment] = ACTIONS(464), }, [883] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [sym_template_body] = STATE(1163), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_LF] = ACTIONS(1910), + [sym_comment] = ACTIONS(464), }, [884] = { - [sym_type_parameters] = STATE(1111), - [sym_template_body] = STATE(1041), - [sym_extends_clause] = STATE(1042), - [sym_class_parameters] = STATE(1043), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_extends] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_LF] = ACTIONS(1701), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(1163), + [sym_extends_clause] = STATE(1164), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_extends] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_LF] = ACTIONS(1910), + [sym_comment] = ACTIONS(464), }, [885] = { - [sym_parameters] = STATE(1112), - [sym_block] = STATE(1085), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_COLON] = ACTIONS(1799), - [anon_sym_EQ] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_LF] = ACTIONS(1781), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_LF] = ACTIONS(1912), + [sym_comment] = ACTIONS(464), }, [886] = { - [anon_sym_DOT] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_EQ] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_LF] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(14), + [sym_import_declaration] = STATE(14), + [sym_object_definition] = STATE(14), + [sym_class_definition] = STATE(14), + [sym_trait_definition] = STATE(14), + [sym_val_definition] = STATE(14), + [sym_val_declaration] = STATE(14), + [sym_var_declaration] = STATE(14), + [sym_var_definition] = STATE(14), + [sym_type_definition] = STATE(14), + [sym_function_definition] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_modifiers] = STATE(111), + [aux_sym_compilation_unit_repeat1] = STATE(262), + [aux_sym_modifiers_repeat1] = STATE(17), + [anon_sym_package] = ACTIONS(12), + [anon_sym_import] = ACTIONS(14), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_case] = ACTIONS(226), + [anon_sym_object] = ACTIONS(18), + [anon_sym_class] = ACTIONS(228), + [anon_sym_trait] = ACTIONS(22), + [anon_sym_val] = ACTIONS(230), + [anon_sym_var] = ACTIONS(232), + [anon_sym_type] = ACTIONS(234), + [anon_sym_def] = ACTIONS(236), + [anon_sym_abstract] = ACTIONS(32), + [anon_sym_final] = ACTIONS(32), + [anon_sym_sealed] = ACTIONS(32), + [anon_sym_implicit] = ACTIONS(32), + [anon_sym_lazy] = ACTIONS(32), + [anon_sym_override] = ACTIONS(32), + [anon_sym_private] = ACTIONS(32), + [anon_sym_protected] = ACTIONS(32), + [sym_comment] = ACTIONS(34), }, [887] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1817), + [aux_sym_type_parameters_repeat1] = STATE(1168), + [anon_sym_COMMA] = ACTIONS(446), + [anon_sym_RBRACK] = ACTIONS(1916), [sym_comment] = ACTIONS(34), }, [888] = { - [anon_sym_DOT] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_LF] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1171), + [anon_sym_DOT] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_with] = ACTIONS(462), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_LF] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [889] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(1819), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_with] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1926), + [sym_operator_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_LF] = ACTIONS(1922), + [sym_comment] = ACTIONS(464), }, [890] = { - [anon_sym_DOT] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_EQ] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_LF] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_with] = ACTIONS(478), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_LF] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [891] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1174), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_with] = ACTIONS(478), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_LF] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [892] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1928), + [sym_comment] = ACTIONS(34), }, [893] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1823), + [anon_sym_EQ_GT] = ACTIONS(1930), [sym_comment] = ACTIONS(34), }, [894] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1117), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_extends] = ACTIONS(1932), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_LF] = ACTIONS(1932), + [sym_comment] = ACTIONS(464), }, [895] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1825), - [anon_sym_package] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_object] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_trait] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_def] = ACTIONS(1827), - [anon_sym_abstract] = ACTIONS(1827), - [anon_sym_final] = ACTIONS(1827), - [anon_sym_sealed] = ACTIONS(1827), - [anon_sym_implicit] = ACTIONS(1827), - [anon_sym_lazy] = ACTIONS(1827), - [anon_sym_override] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [aux_sym_class_parameters_repeat1] = STATE(1177), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(1934), + [sym_comment] = ACTIONS(34), }, [896] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(1118), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_LF] = ACTIONS(1936), + [sym_comment] = ACTIONS(464), }, [897] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [anon_sym_package] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1825), - [anon_sym_object] = ACTIONS(1825), - [anon_sym_class] = ACTIONS(1825), - [anon_sym_trait] = ACTIONS(1825), - [anon_sym_val] = ACTIONS(1825), - [anon_sym_var] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_def] = ACTIONS(1825), - [anon_sym_abstract] = ACTIONS(1825), - [anon_sym_final] = ACTIONS(1825), - [anon_sym_sealed] = ACTIONS(1825), - [anon_sym_implicit] = ACTIONS(1825), - [anon_sym_lazy] = ACTIONS(1825), - [anon_sym_override] = ACTIONS(1825), - [anon_sym_private] = ACTIONS(1825), - [anon_sym_protected] = ACTIONS(1825), + [sym_template_body] = STATE(1178), + [anon_sym_LBRACE] = ACTIONS(1072), [sym_comment] = ACTIONS(34), }, [898] = { - [sym_template_body] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(1491), - [anon_sym_package] = ACTIONS(1491), - [anon_sym_import] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_object] = ACTIONS(1491), - [anon_sym_class] = ACTIONS(1491), - [anon_sym_trait] = ACTIONS(1491), - [anon_sym_val] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_def] = ACTIONS(1491), - [anon_sym_abstract] = ACTIONS(1491), - [anon_sym_final] = ACTIONS(1491), - [anon_sym_sealed] = ACTIONS(1491), - [anon_sym_implicit] = ACTIONS(1491), - [anon_sym_lazy] = ACTIONS(1491), - [anon_sym_override] = ACTIONS(1491), - [anon_sym_private] = ACTIONS(1491), - [anon_sym_protected] = ACTIONS(1491), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1181), + [anon_sym_DOT] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_COLON] = ACTIONS(462), + [anon_sym_EQ] = ACTIONS(462), + [anon_sym_with] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(462), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_LF] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [899] = { - [sym_block] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(1829), - [anon_sym_package] = ACTIONS(1831), - [anon_sym_import] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_case] = ACTIONS(1831), - [anon_sym_object] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_trait] = ACTIONS(1831), - [anon_sym_val] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1833), - [anon_sym_var] = ACTIONS(1831), - [anon_sym_type] = ACTIONS(1831), - [anon_sym_def] = ACTIONS(1831), - [anon_sym_abstract] = ACTIONS(1831), - [anon_sym_final] = ACTIONS(1831), - [anon_sym_sealed] = ACTIONS(1831), - [anon_sym_implicit] = ACTIONS(1831), - [anon_sym_lazy] = ACTIONS(1831), - [anon_sym_override] = ACTIONS(1831), - [anon_sym_private] = ACTIONS(1831), - [anon_sym_protected] = ACTIONS(1831), - [anon_sym_with] = ACTIONS(687), - [sym_identifier] = ACTIONS(689), - [sym_operator_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_COLON] = ACTIONS(1944), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_with] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1950), + [sym_operator_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [sym_comment] = ACTIONS(464), }, [900] = { - [sym_template_body] = STATE(416), - [sym_extends_clause] = STATE(417), - [anon_sym_package] = ACTIONS(719), - [anon_sym_import] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(719), - [anon_sym_case] = ACTIONS(719), - [anon_sym_object] = ACTIONS(719), - [anon_sym_class] = ACTIONS(719), - [anon_sym_trait] = ACTIONS(719), - [anon_sym_val] = ACTIONS(719), - [anon_sym_var] = ACTIONS(719), - [anon_sym_type] = ACTIONS(719), - [anon_sym_def] = ACTIONS(719), - [anon_sym_abstract] = ACTIONS(719), - [anon_sym_final] = ACTIONS(719), - [anon_sym_sealed] = ACTIONS(719), - [anon_sym_implicit] = ACTIONS(719), - [anon_sym_lazy] = ACTIONS(719), - [anon_sym_override] = ACTIONS(719), - [anon_sym_private] = ACTIONS(719), - [anon_sym_protected] = ACTIONS(719), - [anon_sym_extends] = ACTIONS(723), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_with] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(478), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_LF] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [901] = { - [sym_identifier] = ACTIONS(1835), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1185), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_with] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(478), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_LF] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [902] = { - [sym__type] = STATE(1123), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [anon_sym_DOT] = ACTIONS(1952), [sym_comment] = ACTIONS(34), }, [903] = { - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_case] = ACTIONS(793), - [anon_sym_object] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_trait] = ACTIONS(793), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_type] = ACTIONS(793), - [anon_sym_def] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_implicit] = ACTIONS(793), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_override] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(1954), + [sym_comment] = ACTIONS(34), }, [904] = { - [sym__type] = STATE(1124), - [sym_compound_type] = STATE(650), - [sym_infix_type] = STATE(650), - [sym_stable_type_identifier] = STATE(651), - [sym_stable_identifier] = STATE(652), - [sym_generic_type] = STATE(650), - [sym_function_type] = STATE(650), - [sym_parameter_types] = STATE(653), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1106), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_LF] = ACTIONS(1956), + [sym_comment] = ACTIONS(464), }, [905] = { - [sym__type] = STATE(1125), - [sym_compound_type] = STATE(650), - [sym_infix_type] = STATE(650), - [sym_stable_type_identifier] = STATE(651), - [sym_stable_identifier] = STATE(652), - [sym_generic_type] = STATE(650), - [sym_function_type] = STATE(650), - [sym_parameter_types] = STATE(653), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1106), + [sym__type] = STATE(1187), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), [sym_comment] = ACTIONS(34), }, [906] = { - [anon_sym_package] = ACTIONS(799), - [anon_sym_import] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_case] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_class] = ACTIONS(799), - [anon_sym_trait] = ACTIONS(799), - [anon_sym_val] = ACTIONS(799), - [anon_sym_var] = ACTIONS(799), - [anon_sym_type] = ACTIONS(799), - [anon_sym_def] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(799), - [anon_sym_final] = ACTIONS(799), - [anon_sym_sealed] = ACTIONS(799), - [anon_sym_implicit] = ACTIONS(799), - [anon_sym_lazy] = ACTIONS(799), - [anon_sym_override] = ACTIONS(799), - [anon_sym_private] = ACTIONS(799), - [anon_sym_protected] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(1958), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [907] = { - [sym__type] = STATE(1126), - [sym_compound_type] = STATE(650), - [sym_infix_type] = STATE(650), - [sym_stable_type_identifier] = STATE(651), - [sym_stable_identifier] = STATE(652), - [sym_generic_type] = STATE(650), - [sym_function_type] = STATE(650), - [sym_parameter_types] = STATE(653), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1106), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_COLON] = ACTIONS(1944), + [anon_sym_EQ] = ACTIONS(1962), + [anon_sym_with] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1950), + [sym_operator_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1960), + [anon_sym_LF] = ACTIONS(1960), + [sym_comment] = ACTIONS(464), }, [908] = { - [sym_identifier] = ACTIONS(1837), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_LF] = ACTIONS(1964), + [sym_comment] = ACTIONS(464), }, [909] = { - [sym__type] = STATE(1128), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym__type] = STATE(1189), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), [sym_comment] = ACTIONS(34), }, [910] = { - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_case] = ACTIONS(793), - [anon_sym_object] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_trait] = ACTIONS(793), - [anon_sym_val] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_type] = ACTIONS(793), - [anon_sym_def] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_implicit] = ACTIONS(793), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_override] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(1966), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [911] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(1129), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1192), + [anon_sym_DOT] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_with] = ACTIONS(462), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_LF] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [912] = { - [sym__type] = STATE(1130), - [sym_compound_type] = STATE(656), - [sym_infix_type] = STATE(656), - [sym_stable_type_identifier] = STATE(657), - [sym_stable_identifier] = STATE(658), - [sym_generic_type] = STATE(656), - [sym_function_type] = STATE(656), - [sym_parameter_types] = STATE(659), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1108), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_with] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [sym_operator_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_LF] = ACTIONS(1972), + [sym_comment] = ACTIONS(464), }, [913] = { - [sym__type] = STATE(1131), - [sym_compound_type] = STATE(656), - [sym_infix_type] = STATE(656), - [sym_stable_type_identifier] = STATE(657), - [sym_stable_identifier] = STATE(658), - [sym_generic_type] = STATE(656), - [sym_function_type] = STATE(656), - [sym_parameter_types] = STATE(659), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1108), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_with] = ACTIONS(478), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_LF] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [914] = { - [anon_sym_package] = ACTIONS(799), - [anon_sym_import] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_case] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_class] = ACTIONS(799), - [anon_sym_trait] = ACTIONS(799), - [anon_sym_val] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(799), - [anon_sym_EQ] = ACTIONS(799), - [anon_sym_var] = ACTIONS(799), - [anon_sym_type] = ACTIONS(799), - [anon_sym_def] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(799), - [anon_sym_final] = ACTIONS(799), - [anon_sym_sealed] = ACTIONS(799), - [anon_sym_implicit] = ACTIONS(799), - [anon_sym_lazy] = ACTIONS(799), - [anon_sym_override] = ACTIONS(799), - [anon_sym_private] = ACTIONS(799), - [anon_sym_protected] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1195), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_with] = ACTIONS(478), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_LF] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [915] = { - [sym__type] = STATE(1132), - [sym_compound_type] = STATE(656), - [sym_infix_type] = STATE(656), - [sym_stable_type_identifier] = STATE(657), - [sym_stable_identifier] = STATE(658), - [sym_generic_type] = STATE(656), - [sym_function_type] = STATE(656), - [sym_parameter_types] = STATE(659), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1978), [sym_comment] = ACTIONS(34), }, [916] = { - [aux_sym_string_repeat1] = STATE(1134), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(1839), + [anon_sym_EQ_GT] = ACTIONS(1980), [sym_comment] = ACTIONS(34), }, [917] = { - [aux_sym_string_repeat2] = STATE(1135), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(1839), + [sym__type] = STATE(1197), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), [sym_comment] = ACTIONS(34), }, [918] = { - [anon_sym_package] = ACTIONS(866), - [anon_sym_import] = ACTIONS(866), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(866), - [anon_sym_case] = ACTIONS(866), - [anon_sym_object] = ACTIONS(866), - [anon_sym_class] = ACTIONS(866), - [anon_sym_trait] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_val] = ACTIONS(866), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_var] = ACTIONS(866), - [anon_sym_type] = ACTIONS(866), - [anon_sym_def] = ACTIONS(866), - [anon_sym_abstract] = ACTIONS(866), - [anon_sym_final] = ACTIONS(866), - [anon_sym_sealed] = ACTIONS(866), - [anon_sym_implicit] = ACTIONS(866), - [anon_sym_lazy] = ACTIONS(866), - [anon_sym_override] = ACTIONS(866), - [anon_sym_private] = ACTIONS(866), - [anon_sym_protected] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_match] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LF] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [919] = { - [aux_sym_block_repeat1] = STATE(1138), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_LF] = ACTIONS(1843), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(1200), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_LF] = ACTIONS(1984), + [sym_comment] = ACTIONS(464), }, [920] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(1138), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_LF] = ACTIONS(1843), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(1200), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_LF] = ACTIONS(1984), + [sym_comment] = ACTIONS(464), }, [921] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1140), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1203), + [anon_sym_DOT] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(462), + [anon_sym_with] = ACTIONS(462), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_LF] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [922] = { - [sym_block] = STATE(1150), - [sym__expression] = STATE(1151), - [sym_if_expression] = STATE(1150), - [sym_match_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1150), - [sym_generic_function] = STATE(1150), - [sym_call_expression] = STATE(1150), - [sym_field_expression] = STATE(1150), - [sym_instance_expression] = STATE(1150), - [sym_infix_expression] = STATE(1150), - [sym_prefix_expression] = STATE(1150), - [sym_tuple_expression] = STATE(1150), - [sym_parenthesized_expression] = STATE(1150), - [sym_string_transform_expression] = STATE(1150), - [sym_string] = STATE(1150), - [sym__simple_string] = ACTIONS(1847), - [sym__string_start] = ACTIONS(1849), - [sym__multiline_string_start] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [sym_number] = ACTIONS(1865), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(1207), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_EQ] = ACTIONS(1992), + [anon_sym_with] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [sym_operator_identifier] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_LF] = ACTIONS(1990), + [sym_comment] = ACTIONS(464), }, [923] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_object] = ACTIONS(920), - [anon_sym_class] = ACTIONS(920), - [anon_sym_trait] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_var] = ACTIONS(920), - [anon_sym_type] = ACTIONS(920), - [anon_sym_def] = ACTIONS(920), - [anon_sym_abstract] = ACTIONS(920), - [anon_sym_final] = ACTIONS(920), - [anon_sym_sealed] = ACTIONS(920), - [anon_sym_implicit] = ACTIONS(920), - [anon_sym_lazy] = ACTIONS(920), - [anon_sym_override] = ACTIONS(920), - [anon_sym_private] = ACTIONS(920), - [anon_sym_protected] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_with] = ACTIONS(478), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_LF] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [924] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(926), - [anon_sym_import] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_object] = ACTIONS(926), - [anon_sym_class] = ACTIONS(926), - [anon_sym_trait] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_var] = ACTIONS(926), - [anon_sym_type] = ACTIONS(926), - [anon_sym_def] = ACTIONS(926), - [anon_sym_abstract] = ACTIONS(926), - [anon_sym_final] = ACTIONS(926), - [anon_sym_sealed] = ACTIONS(926), - [anon_sym_implicit] = ACTIONS(926), - [anon_sym_lazy] = ACTIONS(926), - [anon_sym_override] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_protected] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1208), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_with] = ACTIONS(478), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_LF] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [925] = { - [anon_sym_package] = ACTIONS(932), - [anon_sym_import] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_object] = ACTIONS(932), - [anon_sym_class] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_val] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_var] = ACTIONS(932), - [anon_sym_type] = ACTIONS(932), - [anon_sym_def] = ACTIONS(932), - [anon_sym_abstract] = ACTIONS(932), - [anon_sym_final] = ACTIONS(932), - [anon_sym_sealed] = ACTIONS(932), - [anon_sym_implicit] = ACTIONS(932), - [anon_sym_lazy] = ACTIONS(932), - [anon_sym_override] = ACTIONS(932), - [anon_sym_private] = ACTIONS(932), - [anon_sym_protected] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_match] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(432), - }, - [926] = { - [sym_identifier] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1998), [sym_comment] = ACTIONS(34), }, - [927] = { - [sym__type] = STATE(1153), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [926] = { + [anon_sym_EQ_GT] = ACTIONS(2000), [sym_comment] = ACTIONS(34), }, - [928] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(1154), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), - [sym_comment] = ACTIONS(34), + [927] = { + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [sym_comment] = ACTIONS(464), + }, + [928] = { + [anon_sym_LBRACE] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_COLON] = ACTIONS(2004), + [anon_sym_EQ] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_LF] = ACTIONS(2004), + [sym_comment] = ACTIONS(464), }, [929] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1156), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [aux_sym_parameters_repeat1] = STATE(1211), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(2006), [sym_comment] = ACTIONS(34), }, [930] = { - [sym_case_block] = STATE(1158), - [anon_sym_LBRACE] = ACTIONS(1871), + [sym__type] = STATE(1212), + [sym_compound_type] = STATE(923), + [sym_infix_type] = STATE(923), + [sym_stable_type_identifier] = STATE(924), + [sym_stable_identifier] = STATE(925), + [sym_generic_type] = STATE(923), + [sym_function_type] = STATE(923), + [sym_parameter_types] = STATE(926), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1545), [sym_comment] = ACTIONS(34), }, [931] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(1159), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), + [sym_block] = STATE(213), + [sym__expression] = STATE(1213), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [932] = { - [anon_sym_package] = ACTIONS(944), - [anon_sym_import] = ACTIONS(944), - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_class] = ACTIONS(944), - [anon_sym_trait] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_val] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_var] = ACTIONS(944), - [anon_sym_type] = ACTIONS(944), - [anon_sym_def] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(944), - [anon_sym_final] = ACTIONS(944), - [anon_sym_sealed] = ACTIONS(944), - [anon_sym_implicit] = ACTIONS(944), - [anon_sym_lazy] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_match] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1207), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(2008), + [anon_sym_EQ] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_LF] = ACTIONS(1990), + [sym_comment] = ACTIONS(464), }, [933] = { - [anon_sym_package] = ACTIONS(950), - [anon_sym_import] = ACTIONS(950), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_object] = ACTIONS(950), - [anon_sym_class] = ACTIONS(950), - [anon_sym_trait] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_val] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_var] = ACTIONS(950), - [anon_sym_type] = ACTIONS(950), - [anon_sym_def] = ACTIONS(950), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_final] = ACTIONS(950), - [anon_sym_sealed] = ACTIONS(950), - [anon_sym_implicit] = ACTIONS(950), - [anon_sym_lazy] = ACTIONS(950), - [anon_sym_override] = ACTIONS(950), - [anon_sym_private] = ACTIONS(950), - [anon_sym_protected] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_match] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [sym_comment] = ACTIONS(464), }, [934] = { - [anon_sym_package] = ACTIONS(962), - [anon_sym_import] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_object] = ACTIONS(962), - [anon_sym_class] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(962), - [anon_sym_val] = ACTIONS(962), - [anon_sym_var] = ACTIONS(962), - [anon_sym_type] = ACTIONS(962), - [anon_sym_def] = ACTIONS(962), - [anon_sym_abstract] = ACTIONS(962), - [anon_sym_final] = ACTIONS(962), - [anon_sym_sealed] = ACTIONS(962), - [anon_sym_implicit] = ACTIONS(962), - [anon_sym_lazy] = ACTIONS(962), - [anon_sym_override] = ACTIONS(962), - [anon_sym_private] = ACTIONS(962), - [anon_sym_protected] = ACTIONS(962), - [anon_sym_with] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [sym_operator_identifier] = ACTIONS(1537), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), }, [935] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(1160), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), + [aux_sym_string_repeat1] = STATE(1216), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2010), [sym_comment] = ACTIONS(34), }, [936] = { - [anon_sym_package] = ACTIONS(974), - [anon_sym_import] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_case] = ACTIONS(974), - [anon_sym_object] = ACTIONS(974), - [anon_sym_class] = ACTIONS(974), - [anon_sym_trait] = ACTIONS(974), - [anon_sym_val] = ACTIONS(974), - [anon_sym_var] = ACTIONS(974), - [anon_sym_type] = ACTIONS(974), - [anon_sym_def] = ACTIONS(974), - [anon_sym_abstract] = ACTIONS(974), - [anon_sym_final] = ACTIONS(974), - [anon_sym_sealed] = ACTIONS(974), - [anon_sym_implicit] = ACTIONS(974), - [anon_sym_lazy] = ACTIONS(974), - [anon_sym_override] = ACTIONS(974), - [anon_sym_private] = ACTIONS(974), - [anon_sym_protected] = ACTIONS(974), - [anon_sym_with] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [sym_operator_identifier] = ACTIONS(1537), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(1217), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2010), + [sym_comment] = ACTIONS(34), }, [937] = { - [sym_identifier] = ACTIONS(1873), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_match] = ACTIONS(924), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LF] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [938] = { - [sym__type] = STATE(1162), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(1220), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2014), + [sym_comment] = ACTIONS(464), }, [939] = { - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_case] = ACTIONS(793), - [anon_sym_object] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_trait] = ACTIONS(793), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_type] = ACTIONS(793), - [anon_sym_def] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_implicit] = ACTIONS(793), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_override] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(1220), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2014), + [sym_comment] = ACTIONS(464), }, [940] = { - [sym__type] = STATE(1163), - [sym_compound_type] = STATE(679), - [sym_infix_type] = STATE(679), - [sym_stable_type_identifier] = STATE(680), - [sym_stable_identifier] = STATE(681), - [sym_generic_type] = STATE(679), - [sym_function_type] = STATE(679), - [sym_parameter_types] = STATE(682), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1134), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(942), [sym_comment] = ACTIONS(34), }, [941] = { - [sym__type] = STATE(1164), - [sym_compound_type] = STATE(679), - [sym_infix_type] = STATE(679), - [sym_stable_type_identifier] = STATE(680), - [sym_stable_identifier] = STATE(681), - [sym_generic_type] = STATE(679), - [sym_function_type] = STATE(679), - [sym_parameter_types] = STATE(682), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1134), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1223), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [942] = { - [anon_sym_package] = ACTIONS(799), - [anon_sym_import] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_case] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_class] = ACTIONS(799), - [anon_sym_trait] = ACTIONS(799), - [anon_sym_val] = ACTIONS(799), - [anon_sym_var] = ACTIONS(799), - [anon_sym_type] = ACTIONS(799), - [anon_sym_def] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(799), - [anon_sym_final] = ACTIONS(799), - [anon_sym_sealed] = ACTIONS(799), - [anon_sym_implicit] = ACTIONS(799), - [anon_sym_lazy] = ACTIONS(799), - [anon_sym_override] = ACTIONS(799), - [anon_sym_private] = ACTIONS(799), - [anon_sym_protected] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(654), + [sym__expression] = STATE(1224), + [sym_if_expression] = STATE(654), + [sym_match_expression] = STATE(654), + [sym_case_block] = STATE(654), + [sym_assignment_expression] = STATE(654), + [sym_generic_function] = STATE(654), + [sym_call_expression] = STATE(654), + [sym_field_expression] = STATE(654), + [sym_instance_expression] = STATE(654), + [sym_infix_expression] = STATE(654), + [sym_prefix_expression] = STATE(654), + [sym_tuple_expression] = STATE(654), + [sym_parenthesized_expression] = STATE(654), + [sym_string_transform_expression] = STATE(654), + [sym_string] = STATE(654), + [sym__simple_string] = ACTIONS(1110), + [sym__string_start] = ACTIONS(1112), + [sym__multiline_string_start] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [sym_number] = ACTIONS(1128), + [sym_comment] = ACTIONS(34), }, [943] = { - [sym__type] = STATE(1165), - [sym_compound_type] = STATE(679), - [sym_infix_type] = STATE(679), - [sym_stable_type_identifier] = STATE(680), - [sym_stable_identifier] = STATE(681), - [sym_generic_type] = STATE(679), - [sym_function_type] = STATE(679), - [sym_parameter_types] = STATE(682), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1134), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(953), + [sym_arguments] = STATE(954), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_LF] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [944] = { - [anon_sym_package] = ACTIONS(980), - [anon_sym_import] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_object] = ACTIONS(980), - [anon_sym_class] = ACTIONS(980), - [anon_sym_trait] = ACTIONS(980), - [anon_sym_val] = ACTIONS(980), - [anon_sym_var] = ACTIONS(980), - [anon_sym_type] = ACTIONS(980), - [anon_sym_def] = ACTIONS(980), - [anon_sym_abstract] = ACTIONS(980), - [anon_sym_final] = ACTIONS(980), - [anon_sym_sealed] = ACTIONS(980), - [anon_sym_implicit] = ACTIONS(980), - [anon_sym_lazy] = ACTIONS(980), - [anon_sym_override] = ACTIONS(980), - [anon_sym_private] = ACTIONS(980), - [anon_sym_protected] = ACTIONS(980), - [anon_sym_with] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [sym_operator_identifier] = ACTIONS(1537), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(953), + [sym_arguments] = STATE(954), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_LF] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [945] = { - [sym_identifier] = ACTIONS(1875), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_LF] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [946] = { - [sym__type] = STATE(1167), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym_identifier] = ACTIONS(2020), [sym_comment] = ACTIONS(34), }, [947] = { - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_case] = ACTIONS(793), - [anon_sym_object] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_trait] = ACTIONS(793), - [anon_sym_val] = ACTIONS(793), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_type] = ACTIONS(793), - [anon_sym_def] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_implicit] = ACTIONS(793), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_override] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1226), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [948] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(1168), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), + [sym_block] = STATE(654), + [sym__expression] = STATE(1227), + [sym_if_expression] = STATE(654), + [sym_match_expression] = STATE(654), + [sym_case_block] = STATE(654), + [sym_assignment_expression] = STATE(654), + [sym_generic_function] = STATE(654), + [sym_call_expression] = STATE(654), + [sym_field_expression] = STATE(654), + [sym_instance_expression] = STATE(654), + [sym_infix_expression] = STATE(654), + [sym_prefix_expression] = STATE(654), + [sym_tuple_expression] = STATE(654), + [sym_parenthesized_expression] = STATE(654), + [sym_string_transform_expression] = STATE(654), + [sym_string] = STATE(654), [sym__simple_string] = ACTIONS(1110), [sym__string_start] = ACTIONS(1112), [sym__multiline_string_start] = ACTIONS(1114), @@ -21636,12628 +22143,15066 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(34), }, [949] = { - [sym__type] = STATE(1169), - [sym_compound_type] = STATE(686), - [sym_infix_type] = STATE(686), - [sym_stable_type_identifier] = STATE(687), - [sym_stable_identifier] = STATE(688), - [sym_generic_type] = STATE(686), - [sym_function_type] = STATE(686), - [sym_parameter_types] = STATE(689), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1138), + [sym_block] = STATE(340), + [sym__expression] = STATE(1229), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [950] = { - [sym__type] = STATE(1170), - [sym_compound_type] = STATE(686), - [sym_infix_type] = STATE(686), - [sym_stable_type_identifier] = STATE(687), - [sym_stable_identifier] = STATE(688), - [sym_generic_type] = STATE(686), - [sym_function_type] = STATE(686), - [sym_parameter_types] = STATE(689), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1138), + [sym_block] = STATE(213), + [sym__expression] = STATE(1230), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [951] = { - [anon_sym_package] = ACTIONS(799), - [anon_sym_import] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_case] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_class] = ACTIONS(799), - [anon_sym_trait] = ACTIONS(799), - [anon_sym_val] = ACTIONS(799), - [anon_sym_EQ] = ACTIONS(799), - [anon_sym_var] = ACTIONS(799), - [anon_sym_type] = ACTIONS(799), - [anon_sym_def] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(799), - [anon_sym_final] = ACTIONS(799), - [anon_sym_sealed] = ACTIONS(799), - [anon_sym_implicit] = ACTIONS(799), - [anon_sym_lazy] = ACTIONS(799), - [anon_sym_override] = ACTIONS(799), - [anon_sym_private] = ACTIONS(799), - [anon_sym_protected] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_case_block] = STATE(1232), + [anon_sym_LBRACE] = ACTIONS(2024), + [sym_comment] = ACTIONS(34), }, [952] = { - [sym__type] = STATE(1171), - [sym_compound_type] = STATE(686), - [sym_infix_type] = STATE(686), - [sym_stable_type_identifier] = STATE(687), - [sym_stable_identifier] = STATE(688), - [sym_generic_type] = STATE(686), - [sym_function_type] = STATE(686), - [sym_parameter_types] = STATE(689), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1138), + [sym_block] = STATE(654), + [sym__expression] = STATE(1233), + [sym_if_expression] = STATE(654), + [sym_match_expression] = STATE(654), + [sym_case_block] = STATE(654), + [sym_assignment_expression] = STATE(654), + [sym_generic_function] = STATE(654), + [sym_call_expression] = STATE(654), + [sym_field_expression] = STATE(654), + [sym_instance_expression] = STATE(654), + [sym_infix_expression] = STATE(654), + [sym_prefix_expression] = STATE(654), + [sym_tuple_expression] = STATE(654), + [sym_parenthesized_expression] = STATE(654), + [sym_string_transform_expression] = STATE(654), + [sym_string] = STATE(654), + [sym__simple_string] = ACTIONS(1110), + [sym__string_start] = ACTIONS(1112), + [sym__multiline_string_start] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [sym_number] = ACTIONS(1128), [sym_comment] = ACTIONS(34), }, [953] = { - [sym_block] = STATE(636), - [anon_sym_package] = ACTIONS(1086), - [anon_sym_import] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(1086), - [anon_sym_case] = ACTIONS(1086), - [anon_sym_object] = ACTIONS(1086), - [anon_sym_class] = ACTIONS(1086), - [anon_sym_trait] = ACTIONS(1086), - [anon_sym_val] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1877), - [anon_sym_var] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_def] = ACTIONS(1086), - [anon_sym_abstract] = ACTIONS(1086), - [anon_sym_final] = ACTIONS(1086), - [anon_sym_sealed] = ACTIONS(1086), - [anon_sym_implicit] = ACTIONS(1086), - [anon_sym_lazy] = ACTIONS(1086), - [anon_sym_override] = ACTIONS(1086), - [anon_sym_private] = ACTIONS(1086), - [anon_sym_protected] = ACTIONS(1086), - [anon_sym_with] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1549), - [sym_operator_identifier] = ACTIONS(1549), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_LF] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [954] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(1090), - [anon_sym_import] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_case] = ACTIONS(1090), - [anon_sym_object] = ACTIONS(1090), - [anon_sym_class] = ACTIONS(1090), - [anon_sym_trait] = ACTIONS(1090), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1090), - [anon_sym_type] = ACTIONS(1090), - [anon_sym_def] = ACTIONS(1090), - [anon_sym_abstract] = ACTIONS(1090), - [anon_sym_final] = ACTIONS(1090), - [anon_sym_sealed] = ACTIONS(1090), - [anon_sym_implicit] = ACTIONS(1090), - [anon_sym_lazy] = ACTIONS(1090), - [anon_sym_override] = ACTIONS(1090), - [anon_sym_private] = ACTIONS(1090), - [anon_sym_protected] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1234), + [sym_case_block] = STATE(1234), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LF] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [955] = { - [sym__type] = STATE(1173), - [sym_compound_type] = STATE(686), - [sym_infix_type] = STATE(686), - [sym_stable_type_identifier] = STATE(687), - [sym_stable_identifier] = STATE(688), - [sym_generic_type] = STATE(686), - [sym_function_type] = STATE(686), - [sym_parameter_types] = STATE(689), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1138), + [ts_builtin_sym_end] = ACTIONS(2028), + [anon_sym_package] = ACTIONS(2028), + [anon_sym_import] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_object] = ACTIONS(2028), + [anon_sym_class] = ACTIONS(2028), + [anon_sym_trait] = ACTIONS(2028), + [anon_sym_val] = ACTIONS(2028), + [anon_sym_var] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_def] = ACTIONS(2028), + [anon_sym_abstract] = ACTIONS(2028), + [anon_sym_final] = ACTIONS(2028), + [anon_sym_sealed] = ACTIONS(2028), + [anon_sym_implicit] = ACTIONS(2028), + [anon_sym_lazy] = ACTIONS(2028), + [anon_sym_override] = ACTIONS(2028), + [anon_sym_private] = ACTIONS(2028), + [anon_sym_protected] = ACTIONS(2028), [sym_comment] = ACTIONS(34), }, [956] = { - [sym_template_body] = STATE(416), - [sym_extends_clause] = STATE(417), - [sym_class_parameters] = STATE(1174), - [anon_sym_package] = ACTIONS(719), - [anon_sym_import] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(719), - [anon_sym_case] = ACTIONS(719), - [anon_sym_object] = ACTIONS(719), - [anon_sym_class] = ACTIONS(719), - [anon_sym_trait] = ACTIONS(719), - [anon_sym_val] = ACTIONS(719), - [anon_sym_var] = ACTIONS(719), - [anon_sym_type] = ACTIONS(719), - [anon_sym_def] = ACTIONS(719), - [anon_sym_abstract] = ACTIONS(719), - [anon_sym_final] = ACTIONS(719), - [anon_sym_sealed] = ACTIONS(719), - [anon_sym_implicit] = ACTIONS(719), - [anon_sym_lazy] = ACTIONS(719), - [anon_sym_override] = ACTIONS(719), - [anon_sym_private] = ACTIONS(719), - [anon_sym_protected] = ACTIONS(719), - [anon_sym_extends] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(106), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [957] = { - [sym_block] = STATE(636), - [anon_sym_package] = ACTIONS(1084), - [anon_sym_import] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_object] = ACTIONS(1084), - [anon_sym_class] = ACTIONS(1084), - [anon_sym_trait] = ACTIONS(1084), - [anon_sym_val] = ACTIONS(1084), - [anon_sym_COLON] = ACTIONS(1879), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_var] = ACTIONS(1084), - [anon_sym_type] = ACTIONS(1084), - [anon_sym_def] = ACTIONS(1084), - [anon_sym_abstract] = ACTIONS(1084), - [anon_sym_final] = ACTIONS(1084), - [anon_sym_sealed] = ACTIONS(1084), - [anon_sym_implicit] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1084), - [anon_sym_override] = ACTIONS(1084), - [anon_sym_private] = ACTIONS(1084), - [anon_sym_protected] = ACTIONS(1084), - [sym_comment] = ACTIONS(34), + [sym_type_parameters] = STATE(1235), + [sym_template_body] = STATE(1163), + [sym_extends_clause] = STATE(1164), + [sym_class_parameters] = STATE(1165), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_extends] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_LF] = ACTIONS(1910), + [sym_comment] = ACTIONS(464), }, [958] = { - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_RBRACK] = ACTIONS(1566), - [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_with] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1568), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1236), + [sym_compound_type] = STATE(900), + [sym_infix_type] = STATE(900), + [sym_stable_type_identifier] = STATE(901), + [sym_stable_identifier] = STATE(902), + [sym_generic_type] = STATE(900), + [sym_function_type] = STATE(900), + [sym_parameter_types] = STATE(903), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1533), + [sym_comment] = ACTIONS(34), }, [959] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1883), + [sym_block] = STATE(213), + [sym__expression] = STATE(1237), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [960] = { - [anon_sym_COMMA] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(1559), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(2030), + [sym_comment] = ACTIONS(34), }, [961] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1239), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), + [sym_comment] = ACTIONS(34), }, [962] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_RBRACK] = ACTIONS(1559), + [sym__type] = STATE(1240), + [sym_compound_type] = STATE(900), + [sym_infix_type] = STATE(900), + [sym_stable_type_identifier] = STATE(901), + [sym_stable_identifier] = STATE(902), + [sym_generic_type] = STATE(900), + [sym_function_type] = STATE(900), + [sym_parameter_types] = STATE(903), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(34), }, [963] = { - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(213), + [sym__expression] = STATE(1241), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [964] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1177), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [aux_sym_val_declaration_repeat1] = STATE(172), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_COLON] = ACTIONS(2032), [sym_comment] = ACTIONS(34), }, [965] = { - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_COMMA] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(1159), - [anon_sym_RPAREN] = ACTIONS(500), - [anon_sym_with] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1243), + [sym_compound_type] = STATE(175), + [sym_infix_type] = STATE(175), + [sym_stable_type_identifier] = STATE(176), + [sym_stable_identifier] = STATE(177), + [sym_generic_type] = STATE(175), + [sym_function_type] = STATE(175), + [sym_parameter_types] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(316), + [sym_comment] = ACTIONS(34), }, [966] = { - [aux_sym_parameter_types_repeat1] = STATE(1179), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1244), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), + [sym_comment] = ACTIONS(34), }, [967] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(2034), + [sym_comment] = ACTIONS(34), }, [968] = { - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_EQ] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1175), - [anon_sym_with] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [sym_parameters] = STATE(1246), + [sym_block] = STATE(1207), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(2008), + [anon_sym_EQ] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_LF] = ACTIONS(1990), + [sym_comment] = ACTIONS(464), }, [969] = { - [anon_sym_COMMA] = ACTIONS(1181), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_with] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_EQ] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_LF] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [970] = { - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_EQ] = ACTIONS(1189), - [anon_sym_RPAREN] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1201), - [sym_operator_identifier] = ACTIONS(1201), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2036), + [sym_comment] = ACTIONS(34), }, [971] = { - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_match] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), }, [972] = { - [sym__string_middle] = ACTIONS(1815), - [sym__string_end] = ACTIONS(1815), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2038), [sym_comment] = ACTIONS(34), }, [973] = { - [sym__multiline_string_middle] = ACTIONS(1815), - [sym__multiline_string_end] = ACTIONS(1815), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_match] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), }, [974] = { - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_COLON] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_with] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1735), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [975] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1898), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2040), [sym_comment] = ACTIONS(34), }, [976] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(1250), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [977] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [anon_sym_package] = ACTIONS(1900), - [anon_sym_import] = ACTIONS(1900), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1900), - [anon_sym_object] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_val] = ACTIONS(1900), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_var] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_def] = ACTIONS(1900), - [anon_sym_abstract] = ACTIONS(1900), - [anon_sym_final] = ACTIONS(1900), - [anon_sym_sealed] = ACTIONS(1900), - [anon_sym_implicit] = ACTIONS(1900), - [anon_sym_lazy] = ACTIONS(1900), - [anon_sym_override] = ACTIONS(1900), - [anon_sym_private] = ACTIONS(1900), - [anon_sym_protected] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_match] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(2042), + [anon_sym_package] = ACTIONS(2044), + [anon_sym_import] = ACTIONS(2044), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_object] = ACTIONS(2044), + [anon_sym_class] = ACTIONS(2044), + [anon_sym_trait] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(2044), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(2044), + [anon_sym_type] = ACTIONS(2044), + [anon_sym_def] = ACTIONS(2044), + [anon_sym_abstract] = ACTIONS(2044), + [anon_sym_final] = ACTIONS(2044), + [anon_sym_sealed] = ACTIONS(2044), + [anon_sym_implicit] = ACTIONS(2044), + [anon_sym_lazy] = ACTIONS(2044), + [anon_sym_override] = ACTIONS(2044), + [anon_sym_private] = ACTIONS(2044), + [anon_sym_protected] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [978] = { - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_match] = ACTIONS(827), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(164), + [sym__expression] = STATE(1251), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), + [sym_comment] = ACTIONS(34), }, [979] = { - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(2042), + [anon_sym_package] = ACTIONS(2042), + [anon_sym_import] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_case] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_trait] = ACTIONS(2042), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_type] = ACTIONS(2042), + [anon_sym_def] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_implicit] = ACTIONS(2042), + [anon_sym_lazy] = ACTIONS(2042), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [sym_comment] = ACTIONS(34), }, [980] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_template_body] = STATE(1252), + [ts_builtin_sym_end] = ACTIONS(1654), + [anon_sym_package] = ACTIONS(1654), + [anon_sym_import] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1654), + [anon_sym_object] = ACTIONS(1654), + [anon_sym_class] = ACTIONS(1654), + [anon_sym_trait] = ACTIONS(1654), + [anon_sym_val] = ACTIONS(1654), + [anon_sym_var] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_def] = ACTIONS(1654), + [anon_sym_abstract] = ACTIONS(1654), + [anon_sym_final] = ACTIONS(1654), + [anon_sym_sealed] = ACTIONS(1654), + [anon_sym_implicit] = ACTIONS(1654), + [anon_sym_lazy] = ACTIONS(1654), + [anon_sym_override] = ACTIONS(1654), + [anon_sym_private] = ACTIONS(1654), + [anon_sym_protected] = ACTIONS(1654), [sym_comment] = ACTIONS(34), }, [981] = { - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_RPAREN] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(2046), + [anon_sym_package] = ACTIONS(2048), + [anon_sym_import] = ACTIONS(2048), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(2048), + [anon_sym_object] = ACTIONS(2048), + [anon_sym_class] = ACTIONS(2048), + [anon_sym_trait] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(2048), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(2048), + [anon_sym_type] = ACTIONS(2048), + [anon_sym_def] = ACTIONS(2048), + [anon_sym_abstract] = ACTIONS(2048), + [anon_sym_final] = ACTIONS(2048), + [anon_sym_sealed] = ACTIONS(2048), + [anon_sym_implicit] = ACTIONS(2048), + [anon_sym_lazy] = ACTIONS(2048), + [anon_sym_override] = ACTIONS(2048), + [anon_sym_private] = ACTIONS(2048), + [anon_sym_protected] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [982] = { - [aux_sym_string_repeat1] = STATE(1183), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(1906), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(2050), + [anon_sym_package] = ACTIONS(2052), + [anon_sym_import] = ACTIONS(2052), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_object] = ACTIONS(2052), + [anon_sym_class] = ACTIONS(2052), + [anon_sym_trait] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(2052), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_def] = ACTIONS(2052), + [anon_sym_abstract] = ACTIONS(2052), + [anon_sym_final] = ACTIONS(2052), + [anon_sym_sealed] = ACTIONS(2052), + [anon_sym_implicit] = ACTIONS(2052), + [anon_sym_lazy] = ACTIONS(2052), + [anon_sym_override] = ACTIONS(2052), + [anon_sym_private] = ACTIONS(2052), + [anon_sym_protected] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [983] = { - [aux_sym_string_repeat2] = STATE(1184), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(1906), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(1254), + [ts_builtin_sym_end] = ACTIONS(2054), + [anon_sym_package] = ACTIONS(2056), + [anon_sym_import] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_case] = ACTIONS(2056), + [anon_sym_object] = ACTIONS(2056), + [anon_sym_class] = ACTIONS(2056), + [anon_sym_trait] = ACTIONS(2056), + [anon_sym_val] = ACTIONS(2056), + [anon_sym_EQ] = ACTIONS(2058), + [anon_sym_var] = ACTIONS(2056), + [anon_sym_type] = ACTIONS(2056), + [anon_sym_def] = ACTIONS(2056), + [anon_sym_abstract] = ACTIONS(2056), + [anon_sym_final] = ACTIONS(2056), + [anon_sym_sealed] = ACTIONS(2056), + [anon_sym_implicit] = ACTIONS(2056), + [anon_sym_lazy] = ACTIONS(2056), + [anon_sym_override] = ACTIONS(2056), + [anon_sym_private] = ACTIONS(2056), + [anon_sym_protected] = ACTIONS(2056), + [anon_sym_with] = ACTIONS(727), + [sym_identifier] = ACTIONS(729), + [sym_operator_identifier] = ACTIONS(729), + [sym_comment] = ACTIONS(464), }, [984] = { - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_else] = ACTIONS(866), - [anon_sym_match] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(451), + [sym_extends_clause] = STATE(452), + [anon_sym_package] = ACTIONS(765), + [anon_sym_import] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_case] = ACTIONS(765), + [anon_sym_object] = ACTIONS(765), + [anon_sym_class] = ACTIONS(765), + [anon_sym_trait] = ACTIONS(765), + [anon_sym_val] = ACTIONS(765), + [anon_sym_var] = ACTIONS(765), + [anon_sym_type] = ACTIONS(765), + [anon_sym_def] = ACTIONS(765), + [anon_sym_abstract] = ACTIONS(765), + [anon_sym_final] = ACTIONS(765), + [anon_sym_sealed] = ACTIONS(765), + [anon_sym_implicit] = ACTIONS(765), + [anon_sym_lazy] = ACTIONS(765), + [anon_sym_override] = ACTIONS(765), + [anon_sym_private] = ACTIONS(765), + [anon_sym_protected] = ACTIONS(765), + [anon_sym_extends] = ACTIONS(769), + [sym_comment] = ACTIONS(34), }, [985] = { - [aux_sym_block_repeat1] = STATE(1187), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_LF] = ACTIONS(1910), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2060), + [sym_comment] = ACTIONS(34), }, [986] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(1187), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_LF] = ACTIONS(1910), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1256), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [987] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1189), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(849), + [anon_sym_import] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_case] = ACTIONS(849), + [anon_sym_object] = ACTIONS(849), + [anon_sym_class] = ACTIONS(849), + [anon_sym_trait] = ACTIONS(849), + [anon_sym_val] = ACTIONS(849), + [anon_sym_var] = ACTIONS(849), + [anon_sym_type] = ACTIONS(849), + [anon_sym_def] = ACTIONS(849), + [anon_sym_abstract] = ACTIONS(849), + [anon_sym_final] = ACTIONS(849), + [anon_sym_sealed] = ACTIONS(849), + [anon_sym_implicit] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(849), + [anon_sym_override] = ACTIONS(849), + [anon_sym_private] = ACTIONS(849), + [anon_sym_protected] = ACTIONS(849), + [anon_sym_with] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [988] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(1190), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), + [sym__type] = STATE(1257), + [sym_compound_type] = STATE(708), + [sym_infix_type] = STATE(708), + [sym_stable_type_identifier] = STATE(709), + [sym_stable_identifier] = STATE(710), + [sym_generic_type] = STATE(708), + [sym_function_type] = STATE(708), + [sym_parameter_types] = STATE(711), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1206), [sym_comment] = ACTIONS(34), }, [989] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1258), + [sym_compound_type] = STATE(708), + [sym_infix_type] = STATE(708), + [sym_stable_type_identifier] = STATE(709), + [sym_stable_identifier] = STATE(710), + [sym_generic_type] = STATE(708), + [sym_function_type] = STATE(708), + [sym_parameter_types] = STATE(711), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1206), + [sym_comment] = ACTIONS(34), }, [990] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_else] = ACTIONS(926), - [anon_sym_match] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_case] = ACTIONS(855), + [anon_sym_object] = ACTIONS(855), + [anon_sym_class] = ACTIONS(855), + [anon_sym_trait] = ACTIONS(855), + [anon_sym_val] = ACTIONS(855), + [anon_sym_var] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_abstract] = ACTIONS(855), + [anon_sym_final] = ACTIONS(855), + [anon_sym_sealed] = ACTIONS(855), + [anon_sym_implicit] = ACTIONS(855), + [anon_sym_lazy] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [991] = { - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(930), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1259), + [sym_compound_type] = STATE(708), + [sym_infix_type] = STATE(708), + [sym_stable_type_identifier] = STATE(709), + [sym_stable_identifier] = STATE(710), + [sym_generic_type] = STATE(708), + [sym_function_type] = STATE(708), + [sym_parameter_types] = STATE(711), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1206), + [sym_comment] = ACTIONS(34), }, [992] = { - [sym_identifier] = ACTIONS(1914), + [sym_identifier] = ACTIONS(2062), [sym_comment] = ACTIONS(34), }, [993] = { - [sym__type] = STATE(1192), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym__type] = STATE(1261), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [994] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(1193), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(849), + [anon_sym_import] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_case] = ACTIONS(849), + [anon_sym_object] = ACTIONS(849), + [anon_sym_class] = ACTIONS(849), + [anon_sym_trait] = ACTIONS(849), + [anon_sym_val] = ACTIONS(849), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_var] = ACTIONS(849), + [anon_sym_type] = ACTIONS(849), + [anon_sym_def] = ACTIONS(849), + [anon_sym_abstract] = ACTIONS(849), + [anon_sym_final] = ACTIONS(849), + [anon_sym_sealed] = ACTIONS(849), + [anon_sym_implicit] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(849), + [anon_sym_override] = ACTIONS(849), + [anon_sym_private] = ACTIONS(849), + [anon_sym_protected] = ACTIONS(849), + [anon_sym_with] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [995] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1195), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym_block] = STATE(727), + [sym__expression] = STATE(1262), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [996] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1196), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym__type] = STATE(1263), + [sym_compound_type] = STATE(714), + [sym_infix_type] = STATE(714), + [sym_stable_type_identifier] = STATE(715), + [sym_stable_identifier] = STATE(716), + [sym_generic_type] = STATE(714), + [sym_function_type] = STATE(714), + [sym_parameter_types] = STATE(717), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1208), [sym_comment] = ACTIONS(34), }, [997] = { - [sym_case_block] = STATE(1198), - [anon_sym_LBRACE] = ACTIONS(1918), + [sym__type] = STATE(1264), + [sym_compound_type] = STATE(714), + [sym_infix_type] = STATE(714), + [sym_stable_type_identifier] = STATE(715), + [sym_stable_identifier] = STATE(716), + [sym_generic_type] = STATE(714), + [sym_function_type] = STATE(714), + [sym_parameter_types] = STATE(717), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1208), [sym_comment] = ACTIONS(34), }, [998] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(1199), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_case] = ACTIONS(855), + [anon_sym_object] = ACTIONS(855), + [anon_sym_class] = ACTIONS(855), + [anon_sym_trait] = ACTIONS(855), + [anon_sym_val] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_var] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_abstract] = ACTIONS(855), + [anon_sym_final] = ACTIONS(855), + [anon_sym_sealed] = ACTIONS(855), + [anon_sym_implicit] = ACTIONS(855), + [anon_sym_lazy] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [999] = { - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(942), - [anon_sym_else] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1265), + [sym_compound_type] = STATE(714), + [sym_infix_type] = STATE(714), + [sym_stable_type_identifier] = STATE(715), + [sym_stable_identifier] = STATE(716), + [sym_generic_type] = STATE(714), + [sym_function_type] = STATE(714), + [sym_parameter_types] = STATE(717), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1208), + [sym_comment] = ACTIONS(34), }, [1000] = { - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_COMMA] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_else] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(1267), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2064), + [sym_comment] = ACTIONS(34), }, [1001] = { - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(1268), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2064), + [sym_comment] = ACTIONS(34), }, [1002] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1920), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(922), + [anon_sym_import] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_object] = ACTIONS(922), + [anon_sym_class] = ACTIONS(922), + [anon_sym_trait] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_val] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_var] = ACTIONS(922), + [anon_sym_type] = ACTIONS(922), + [anon_sym_def] = ACTIONS(922), + [anon_sym_abstract] = ACTIONS(922), + [anon_sym_final] = ACTIONS(922), + [anon_sym_sealed] = ACTIONS(922), + [anon_sym_implicit] = ACTIONS(922), + [anon_sym_lazy] = ACTIONS(922), + [anon_sym_override] = ACTIONS(922), + [anon_sym_private] = ACTIONS(922), + [anon_sym_protected] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_match] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [1003] = { - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_COMMA] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_match] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(1271), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2068), + [sym_comment] = ACTIONS(464), }, [1004] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(1922), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(1271), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_LF] = ACTIONS(2068), + [sym_comment] = ACTIONS(464), }, [1005] = { - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_COMMA] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_match] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [1006] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(1924), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1274), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2072), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1007] = { - [sym_parenthesized_expression] = STATE(1203), - [anon_sym_LPAREN] = ACTIONS(546), + [sym_block] = STATE(1284), + [sym__expression] = STATE(1285), + [sym_if_expression] = STATE(1284), + [sym_match_expression] = STATE(1284), + [sym_case_block] = STATE(1284), + [sym_assignment_expression] = STATE(1284), + [sym_generic_function] = STATE(1284), + [sym_call_expression] = STATE(1284), + [sym_field_expression] = STATE(1284), + [sym_instance_expression] = STATE(1284), + [sym_infix_expression] = STATE(1284), + [sym_prefix_expression] = STATE(1284), + [sym_tuple_expression] = STATE(1284), + [sym_parenthesized_expression] = STATE(1284), + [sym_string_transform_expression] = STATE(1284), + [sym_string] = STATE(1284), + [sym__simple_string] = ACTIONS(2074), + [sym__string_start] = ACTIONS(2076), + [sym__multiline_string_start] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_new] = ACTIONS(2086), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [sym_number] = ACTIONS(2092), [sym_comment] = ACTIONS(34), }, [1008] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(989), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(990), + [anon_sym_import] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_case] = ACTIONS(990), + [anon_sym_object] = ACTIONS(990), + [anon_sym_class] = ACTIONS(990), + [anon_sym_trait] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_var] = ACTIONS(990), + [anon_sym_type] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_abstract] = ACTIONS(990), + [anon_sym_final] = ACTIONS(990), + [anon_sym_sealed] = ACTIONS(990), + [anon_sym_implicit] = ACTIONS(990), + [anon_sym_lazy] = ACTIONS(990), + [anon_sym_override] = ACTIONS(990), + [anon_sym_private] = ACTIONS(990), + [anon_sym_protected] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [1009] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(990), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(996), + [anon_sym_import] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_class] = ACTIONS(996), + [anon_sym_trait] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_var] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_def] = ACTIONS(996), + [anon_sym_abstract] = ACTIONS(996), + [anon_sym_final] = ACTIONS(996), + [anon_sym_sealed] = ACTIONS(996), + [anon_sym_implicit] = ACTIONS(996), + [anon_sym_lazy] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [1010] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1930), - [sym_operator_identifier] = ACTIONS(1930), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1002), + [anon_sym_import] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_case] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_class] = ACTIONS(1002), + [anon_sym_trait] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_val] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_var] = ACTIONS(1002), + [anon_sym_type] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(1002), + [anon_sym_final] = ACTIONS(1002), + [anon_sym_sealed] = ACTIONS(1002), + [anon_sym_implicit] = ACTIONS(1002), + [anon_sym_lazy] = ACTIONS(1002), + [anon_sym_override] = ACTIONS(1002), + [anon_sym_private] = ACTIONS(1002), + [anon_sym_protected] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [1011] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1324), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1294), - [sym_operator_identifier] = ACTIONS(1294), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2094), + [sym_comment] = ACTIONS(34), }, [1012] = { - [ts_builtin_sym_end] = ACTIONS(480), - [anon_sym_package] = ACTIONS(482), - [anon_sym_import] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_case] = ACTIONS(482), - [anon_sym_object] = ACTIONS(482), - [anon_sym_class] = ACTIONS(482), - [anon_sym_trait] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_val] = ACTIONS(482), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_var] = ACTIONS(482), - [anon_sym_type] = ACTIONS(482), - [anon_sym_def] = ACTIONS(482), - [anon_sym_abstract] = ACTIONS(482), - [anon_sym_final] = ACTIONS(482), - [anon_sym_sealed] = ACTIONS(482), - [anon_sym_implicit] = ACTIONS(482), - [anon_sym_lazy] = ACTIONS(482), - [anon_sym_override] = ACTIONS(482), - [anon_sym_private] = ACTIONS(482), - [anon_sym_protected] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_else] = ACTIONS(482), - [anon_sym_match] = ACTIONS(482), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1287), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1013] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(1932), + [sym_block] = STATE(727), + [sym__expression] = STATE(1288), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [1014] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(1932), + [sym_block] = STATE(340), + [sym__expression] = STATE(1290), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [1015] = { - [ts_builtin_sym_end] = ACTIONS(1058), - [anon_sym_package] = ACTIONS(1238), - [anon_sym_import] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_object] = ACTIONS(1238), - [anon_sym_class] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_val] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_var] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_def] = ACTIONS(1238), - [anon_sym_abstract] = ACTIONS(1238), - [anon_sym_final] = ACTIONS(1238), - [anon_sym_sealed] = ACTIONS(1238), - [anon_sym_implicit] = ACTIONS(1238), - [anon_sym_lazy] = ACTIONS(1238), - [anon_sym_override] = ACTIONS(1238), - [anon_sym_private] = ACTIONS(1238), - [anon_sym_protected] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [sym_case_block] = STATE(1292), + [anon_sym_LBRACE] = ACTIONS(2098), + [sym_comment] = ACTIONS(34), }, [1016] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_block] = STATE(727), + [sym__expression] = STATE(1293), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [1017] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LF] = ACTIONS(1938), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_object] = ACTIONS(1014), + [anon_sym_class] = ACTIONS(1014), + [anon_sym_trait] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_val] = ACTIONS(1014), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_var] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_abstract] = ACTIONS(1014), + [anon_sym_final] = ACTIONS(1014), + [anon_sym_sealed] = ACTIONS(1014), + [anon_sym_implicit] = ACTIONS(1014), + [anon_sym_lazy] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [1018] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [anon_sym_package] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), - [anon_sym_class] = ACTIONS(1282), - [anon_sym_trait] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_val] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_var] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_abstract] = ACTIONS(1282), - [anon_sym_final] = ACTIONS(1282), - [anon_sym_sealed] = ACTIONS(1282), - [anon_sym_implicit] = ACTIONS(1282), - [anon_sym_lazy] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1294), + [sym_case_block] = STATE(1294), + [anon_sym_package] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_object] = ACTIONS(1020), + [anon_sym_class] = ACTIONS(1020), + [anon_sym_trait] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_val] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_var] = ACTIONS(1020), + [anon_sym_type] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_abstract] = ACTIONS(1020), + [anon_sym_final] = ACTIONS(1020), + [anon_sym_sealed] = ACTIONS(1020), + [anon_sym_implicit] = ACTIONS(1020), + [anon_sym_lazy] = ACTIONS(1020), + [anon_sym_override] = ACTIONS(1020), + [anon_sym_private] = ACTIONS(1020), + [anon_sym_protected] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [1019] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(1940), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1034), + [anon_sym_import] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(1034), + [anon_sym_object] = ACTIONS(1034), + [anon_sym_class] = ACTIONS(1034), + [anon_sym_trait] = ACTIONS(1034), + [anon_sym_val] = ACTIONS(1034), + [anon_sym_var] = ACTIONS(1034), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_abstract] = ACTIONS(1034), + [anon_sym_final] = ACTIONS(1034), + [anon_sym_sealed] = ACTIONS(1034), + [anon_sym_implicit] = ACTIONS(1034), + [anon_sym_lazy] = ACTIONS(1034), + [anon_sym_override] = ACTIONS(1034), + [anon_sym_private] = ACTIONS(1034), + [anon_sym_protected] = ACTIONS(1034), + [anon_sym_with] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [sym_operator_identifier] = ACTIONS(1700), + [sym_comment] = ACTIONS(464), }, [1020] = { - [sym_type_arguments] = STATE(787), - [sym_arguments] = STATE(788), - [ts_builtin_sym_end] = ACTIONS(1298), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_object] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_val] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_var] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_sealed] = ACTIONS(1300), - [anon_sym_implicit] = ACTIONS(1300), - [anon_sym_lazy] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_protected] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1942), - [anon_sym_match] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [sym_operator_identifier] = ACTIONS(1314), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(727), + [sym__expression] = STATE(1295), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), + [sym_comment] = ACTIONS(34), }, [1021] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [anon_sym_package] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(1318), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_object] = ACTIONS(1318), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_trait] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_val] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_var] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_def] = ACTIONS(1318), - [anon_sym_abstract] = ACTIONS(1318), - [anon_sym_final] = ACTIONS(1318), - [anon_sym_sealed] = ACTIONS(1318), - [anon_sym_implicit] = ACTIONS(1318), - [anon_sym_lazy] = ACTIONS(1318), - [anon_sym_override] = ACTIONS(1318), - [anon_sym_private] = ACTIONS(1318), - [anon_sym_protected] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1046), + [anon_sym_import] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_case] = ACTIONS(1046), + [anon_sym_object] = ACTIONS(1046), + [anon_sym_class] = ACTIONS(1046), + [anon_sym_trait] = ACTIONS(1046), + [anon_sym_val] = ACTIONS(1046), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_type] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1046), + [anon_sym_abstract] = ACTIONS(1046), + [anon_sym_final] = ACTIONS(1046), + [anon_sym_sealed] = ACTIONS(1046), + [anon_sym_implicit] = ACTIONS(1046), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_override] = ACTIONS(1046), + [anon_sym_private] = ACTIONS(1046), + [anon_sym_protected] = ACTIONS(1046), + [anon_sym_with] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [sym_operator_identifier] = ACTIONS(1700), + [sym_comment] = ACTIONS(464), }, [1022] = { - [aux_sym_parameter_types_repeat1] = STATE(1213), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(1944), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2102), + [sym_comment] = ACTIONS(34), }, [1023] = { - [sym_type_arguments] = STATE(787), - [sym_arguments] = STATE(788), - [ts_builtin_sym_end] = ACTIONS(1324), - [anon_sym_package] = ACTIONS(1326), - [anon_sym_import] = ACTIONS(1326), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_object] = ACTIONS(1326), - [anon_sym_class] = ACTIONS(1326), - [anon_sym_trait] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_val] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_var] = ACTIONS(1326), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_def] = ACTIONS(1326), - [anon_sym_abstract] = ACTIONS(1326), - [anon_sym_final] = ACTIONS(1326), - [anon_sym_sealed] = ACTIONS(1326), - [anon_sym_implicit] = ACTIONS(1326), - [anon_sym_lazy] = ACTIONS(1326), - [anon_sym_override] = ACTIONS(1326), - [anon_sym_private] = ACTIONS(1326), - [anon_sym_protected] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1314), - [sym_operator_identifier] = ACTIONS(1314), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1297), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1024] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [anon_sym_package] = ACTIONS(1330), - [anon_sym_import] = ACTIONS(1330), - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [anon_sym_class] = ACTIONS(1330), - [anon_sym_trait] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_val] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_var] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_def] = ACTIONS(1330), - [anon_sym_abstract] = ACTIONS(1330), - [anon_sym_final] = ACTIONS(1330), - [anon_sym_sealed] = ACTIONS(1330), - [anon_sym_implicit] = ACTIONS(1330), - [anon_sym_lazy] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(849), + [anon_sym_import] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_case] = ACTIONS(849), + [anon_sym_object] = ACTIONS(849), + [anon_sym_class] = ACTIONS(849), + [anon_sym_trait] = ACTIONS(849), + [anon_sym_val] = ACTIONS(849), + [anon_sym_var] = ACTIONS(849), + [anon_sym_type] = ACTIONS(849), + [anon_sym_def] = ACTIONS(849), + [anon_sym_abstract] = ACTIONS(849), + [anon_sym_final] = ACTIONS(849), + [anon_sym_sealed] = ACTIONS(849), + [anon_sym_implicit] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(849), + [anon_sym_override] = ACTIONS(849), + [anon_sym_private] = ACTIONS(849), + [anon_sym_protected] = ACTIONS(849), + [anon_sym_with] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [1025] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1215), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1298), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), + [sym_comment] = ACTIONS(34), }, [1026] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1948), - [anon_sym_package] = ACTIONS(1950), - [anon_sym_import] = ACTIONS(1950), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(1950), - [anon_sym_object] = ACTIONS(1950), - [anon_sym_class] = ACTIONS(1950), - [anon_sym_trait] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(1950), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(1950), - [anon_sym_type] = ACTIONS(1950), - [anon_sym_def] = ACTIONS(1950), - [anon_sym_abstract] = ACTIONS(1950), - [anon_sym_final] = ACTIONS(1950), - [anon_sym_sealed] = ACTIONS(1950), - [anon_sym_implicit] = ACTIONS(1950), - [anon_sym_lazy] = ACTIONS(1950), - [anon_sym_override] = ACTIONS(1950), - [anon_sym_private] = ACTIONS(1950), - [anon_sym_protected] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1299), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), + [sym_comment] = ACTIONS(34), }, [1027] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1217), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_case] = ACTIONS(855), + [anon_sym_object] = ACTIONS(855), + [anon_sym_class] = ACTIONS(855), + [anon_sym_trait] = ACTIONS(855), + [anon_sym_val] = ACTIONS(855), + [anon_sym_var] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_abstract] = ACTIONS(855), + [anon_sym_final] = ACTIONS(855), + [anon_sym_sealed] = ACTIONS(855), + [anon_sym_implicit] = ACTIONS(855), + [anon_sym_lazy] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [1028] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [anon_sym_package] = ACTIONS(1342), - [anon_sym_import] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_class] = ACTIONS(1342), - [anon_sym_trait] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_val] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_var] = ACTIONS(1342), - [anon_sym_type] = ACTIONS(1342), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_final] = ACTIONS(1342), - [anon_sym_sealed] = ACTIONS(1342), - [anon_sym_implicit] = ACTIONS(1342), - [anon_sym_lazy] = ACTIONS(1342), - [anon_sym_override] = ACTIONS(1342), - [anon_sym_private] = ACTIONS(1342), - [anon_sym_protected] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1300), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), + [sym_comment] = ACTIONS(34), }, [1029] = { - [sym_type_arguments] = STATE(787), - [sym_arguments] = STATE(788), - [ts_builtin_sym_end] = ACTIONS(1346), - [anon_sym_package] = ACTIONS(1348), - [anon_sym_import] = ACTIONS(1348), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_object] = ACTIONS(1348), - [anon_sym_class] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_val] = ACTIONS(1348), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_var] = ACTIONS(1348), - [anon_sym_type] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1348), - [anon_sym_abstract] = ACTIONS(1348), - [anon_sym_final] = ACTIONS(1348), - [anon_sym_sealed] = ACTIONS(1348), - [anon_sym_implicit] = ACTIONS(1348), - [anon_sym_lazy] = ACTIONS(1348), - [anon_sym_override] = ACTIONS(1348), - [anon_sym_private] = ACTIONS(1348), - [anon_sym_protected] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1052), + [anon_sym_import] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_object] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(1052), + [anon_sym_trait] = ACTIONS(1052), + [anon_sym_val] = ACTIONS(1052), + [anon_sym_var] = ACTIONS(1052), + [anon_sym_type] = ACTIONS(1052), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_abstract] = ACTIONS(1052), + [anon_sym_final] = ACTIONS(1052), + [anon_sym_sealed] = ACTIONS(1052), + [anon_sym_implicit] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1052), + [anon_sym_override] = ACTIONS(1052), + [anon_sym_private] = ACTIONS(1052), + [anon_sym_protected] = ACTIONS(1052), + [anon_sym_with] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [sym_operator_identifier] = ACTIONS(1700), + [sym_comment] = ACTIONS(464), }, [1030] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1885), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2104), + [sym_comment] = ACTIONS(34), }, [1031] = { - [ts_builtin_sym_end] = ACTIONS(1954), - [anon_sym_package] = ACTIONS(1956), - [anon_sym_import] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_case] = ACTIONS(1956), - [anon_sym_object] = ACTIONS(1956), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_val] = ACTIONS(1956), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_var] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_def] = ACTIONS(1956), - [anon_sym_abstract] = ACTIONS(1956), - [anon_sym_final] = ACTIONS(1956), - [anon_sym_sealed] = ACTIONS(1956), - [anon_sym_implicit] = ACTIONS(1956), - [anon_sym_lazy] = ACTIONS(1956), - [anon_sym_override] = ACTIONS(1956), - [anon_sym_private] = ACTIONS(1956), - [anon_sym_protected] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_match] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1302), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1032] = { - [sym_guard] = STATE(1221), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_EQ_GT] = ACTIONS(1960), - [anon_sym_COLON] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), - [anon_sym_if] = ACTIONS(1964), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(849), + [anon_sym_import] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_case] = ACTIONS(849), + [anon_sym_object] = ACTIONS(849), + [anon_sym_class] = ACTIONS(849), + [anon_sym_trait] = ACTIONS(849), + [anon_sym_val] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_var] = ACTIONS(849), + [anon_sym_type] = ACTIONS(849), + [anon_sym_def] = ACTIONS(849), + [anon_sym_abstract] = ACTIONS(849), + [anon_sym_final] = ACTIONS(849), + [anon_sym_sealed] = ACTIONS(849), + [anon_sym_implicit] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(849), + [anon_sym_override] = ACTIONS(849), + [anon_sym_private] = ACTIONS(849), + [anon_sym_protected] = ACTIONS(849), + [anon_sym_with] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [1033] = { - [sym_guard] = STATE(1221), - [anon_sym_EQ_GT] = ACTIONS(1960), - [anon_sym_COLON] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(136), - [anon_sym_if] = ACTIONS(1964), + [sym_block] = STATE(727), + [sym__expression] = STATE(1303), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [1034] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [anon_sym_package] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_object] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_val] = ACTIONS(1968), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_def] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_final] = ACTIONS(1968), - [anon_sym_sealed] = ACTIONS(1968), - [anon_sym_implicit] = ACTIONS(1968), - [anon_sym_lazy] = ACTIONS(1968), - [anon_sym_override] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_protected] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1304), + [sym_compound_type] = STATE(744), + [sym_infix_type] = STATE(744), + [sym_stable_type_identifier] = STATE(745), + [sym_stable_identifier] = STATE(746), + [sym_generic_type] = STATE(744), + [sym_function_type] = STATE(744), + [sym_parameter_types] = STATE(747), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1238), + [sym_comment] = ACTIONS(34), }, [1035] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_case] = ACTIONS(1974), + [sym__type] = STATE(1305), + [sym_compound_type] = STATE(744), + [sym_infix_type] = STATE(744), + [sym_stable_type_identifier] = STATE(745), + [sym_stable_identifier] = STATE(746), + [sym_generic_type] = STATE(744), + [sym_function_type] = STATE(744), + [sym_parameter_types] = STATE(747), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1238), [sym_comment] = ACTIONS(34), }, [1036] = { - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_case] = ACTIONS(855), + [anon_sym_object] = ACTIONS(855), + [anon_sym_class] = ACTIONS(855), + [anon_sym_trait] = ACTIONS(855), + [anon_sym_val] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_var] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_def] = ACTIONS(855), + [anon_sym_abstract] = ACTIONS(855), + [anon_sym_final] = ACTIONS(855), + [anon_sym_sealed] = ACTIONS(855), + [anon_sym_implicit] = ACTIONS(855), + [anon_sym_lazy] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [1037] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1306), + [sym_compound_type] = STATE(744), + [sym_infix_type] = STATE(744), + [sym_stable_type_identifier] = STATE(745), + [sym_stable_identifier] = STATE(746), + [sym_generic_type] = STATE(744), + [sym_function_type] = STATE(744), + [sym_parameter_types] = STATE(747), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1238), + [sym_comment] = ACTIONS(34), }, [1038] = { - [aux_sym_import_selectors_repeat1] = STATE(1223), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_EQ_GT] = ACTIONS(717), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(689), + [anon_sym_package] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_object] = ACTIONS(1170), + [anon_sym_class] = ACTIONS(1170), + [anon_sym_trait] = ACTIONS(1170), + [anon_sym_val] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(2106), + [anon_sym_var] = ACTIONS(1170), + [anon_sym_type] = ACTIONS(1170), + [anon_sym_def] = ACTIONS(1170), + [anon_sym_abstract] = ACTIONS(1170), + [anon_sym_final] = ACTIONS(1170), + [anon_sym_sealed] = ACTIONS(1170), + [anon_sym_implicit] = ACTIONS(1170), + [anon_sym_lazy] = ACTIONS(1170), + [anon_sym_override] = ACTIONS(1170), + [anon_sym_private] = ACTIONS(1170), + [anon_sym_protected] = ACTIONS(1170), + [anon_sym_with] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [sym_operator_identifier] = ACTIONS(1712), + [sym_comment] = ACTIONS(464), }, [1039] = { - [aux_sym_import_selectors_repeat1] = STATE(1223), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(1977), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(1174), + [anon_sym_import] = ACTIONS(1174), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_object] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1174), + [anon_sym_trait] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(1174), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(1174), + [anon_sym_type] = ACTIONS(1174), + [anon_sym_def] = ACTIONS(1174), + [anon_sym_abstract] = ACTIONS(1174), + [anon_sym_final] = ACTIONS(1174), + [anon_sym_sealed] = ACTIONS(1174), + [anon_sym_implicit] = ACTIONS(1174), + [anon_sym_lazy] = ACTIONS(1174), + [anon_sym_override] = ACTIONS(1174), + [anon_sym_private] = ACTIONS(1174), + [anon_sym_protected] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1040] = { - [anon_sym_DOT] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_match] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_LF] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1308), + [sym_compound_type] = STATE(744), + [sym_infix_type] = STATE(744), + [sym_stable_type_identifier] = STATE(745), + [sym_stable_identifier] = STATE(746), + [sym_generic_type] = STATE(744), + [sym_function_type] = STATE(744), + [sym_parameter_types] = STATE(747), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1238), + [sym_comment] = ACTIONS(34), }, [1041] = { - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1979), - [anon_sym_LF] = ACTIONS(1979), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(451), + [sym_extends_clause] = STATE(452), + [sym_class_parameters] = STATE(1309), + [anon_sym_package] = ACTIONS(765), + [anon_sym_import] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_case] = ACTIONS(765), + [anon_sym_object] = ACTIONS(765), + [anon_sym_class] = ACTIONS(765), + [anon_sym_trait] = ACTIONS(765), + [anon_sym_val] = ACTIONS(765), + [anon_sym_var] = ACTIONS(765), + [anon_sym_type] = ACTIONS(765), + [anon_sym_def] = ACTIONS(765), + [anon_sym_abstract] = ACTIONS(765), + [anon_sym_final] = ACTIONS(765), + [anon_sym_sealed] = ACTIONS(765), + [anon_sym_implicit] = ACTIONS(765), + [anon_sym_lazy] = ACTIONS(765), + [anon_sym_override] = ACTIONS(765), + [anon_sym_private] = ACTIONS(765), + [anon_sym_protected] = ACTIONS(765), + [anon_sym_extends] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(110), + [sym_comment] = ACTIONS(34), }, [1042] = { - [sym_template_body] = STATE(1224), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1979), - [anon_sym_LF] = ACTIONS(1979), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1034), + [anon_sym_import] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(1034), + [anon_sym_object] = ACTIONS(1034), + [anon_sym_class] = ACTIONS(1034), + [anon_sym_trait] = ACTIONS(1034), + [anon_sym_val] = ACTIONS(1034), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(2108), + [anon_sym_var] = ACTIONS(1034), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_abstract] = ACTIONS(1034), + [anon_sym_final] = ACTIONS(1034), + [anon_sym_sealed] = ACTIONS(1034), + [anon_sym_implicit] = ACTIONS(1034), + [anon_sym_lazy] = ACTIONS(1034), + [anon_sym_override] = ACTIONS(1034), + [anon_sym_private] = ACTIONS(1034), + [anon_sym_protected] = ACTIONS(1034), + [anon_sym_with] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(1674), + [sym_operator_identifier] = ACTIONS(1674), + [sym_comment] = ACTIONS(464), }, [1043] = { - [sym_template_body] = STATE(1224), - [sym_extends_clause] = STATE(1225), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_extends] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1979), - [anon_sym_LF] = ACTIONS(1979), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1180), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1180), + [anon_sym_case] = ACTIONS(1180), + [anon_sym_object] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(1180), + [anon_sym_trait] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(1180), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(1180), + [anon_sym_type] = ACTIONS(1180), + [anon_sym_def] = ACTIONS(1180), + [anon_sym_abstract] = ACTIONS(1180), + [anon_sym_final] = ACTIONS(1180), + [anon_sym_sealed] = ACTIONS(1180), + [anon_sym_implicit] = ACTIONS(1180), + [anon_sym_lazy] = ACTIONS(1180), + [anon_sym_override] = ACTIONS(1180), + [anon_sym_private] = ACTIONS(1180), + [anon_sym_protected] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1044] = { - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_SEMI] = ACTIONS(1981), - [anon_sym_LF] = ACTIONS(1981), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1311), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), + [sym_comment] = ACTIONS(34), }, [1045] = { - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_extends] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_LF] = ACTIONS(1983), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(2108), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [1046] = { - [aux_sym_type_parameters_repeat1] = STATE(440), - [anon_sym_COMMA] = ACTIONS(414), - [anon_sym_RBRACK] = ACTIONS(1985), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1046), + [anon_sym_import] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_case] = ACTIONS(1046), + [anon_sym_object] = ACTIONS(1046), + [anon_sym_class] = ACTIONS(1046), + [anon_sym_trait] = ACTIONS(1046), + [anon_sym_val] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_type] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1046), + [anon_sym_abstract] = ACTIONS(1046), + [anon_sym_final] = ACTIONS(1046), + [anon_sym_sealed] = ACTIONS(1046), + [anon_sym_implicit] = ACTIONS(1046), + [anon_sym_lazy] = ACTIONS(1046), + [anon_sym_override] = ACTIONS(1046), + [anon_sym_private] = ACTIONS(1046), + [anon_sym_protected] = ACTIONS(1046), + [anon_sym_with] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(1674), + [sym_operator_identifier] = ACTIONS(1674), + [sym_comment] = ACTIONS(464), }, [1047] = { - [sym_identifier] = ACTIONS(1987), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(1186), + [anon_sym_import] = ACTIONS(1186), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1186), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_object] = ACTIONS(1186), + [anon_sym_class] = ACTIONS(1186), + [anon_sym_trait] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_def] = ACTIONS(1186), + [anon_sym_abstract] = ACTIONS(1186), + [anon_sym_final] = ACTIONS(1186), + [anon_sym_sealed] = ACTIONS(1186), + [anon_sym_implicit] = ACTIONS(1186), + [anon_sym_lazy] = ACTIONS(1186), + [anon_sym_override] = ACTIONS(1186), + [anon_sym_private] = ACTIONS(1186), + [anon_sym_protected] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1048] = { - [sym__type] = STATE(1228), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), + [sym__type] = STATE(1313), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), [sym_comment] = ACTIONS(34), }, [1049] = { - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_with] = ACTIONS(795), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_LF] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(2110), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [1050] = { - [sym__type] = STATE(1229), - [sym_compound_type] = STATE(818), - [sym_infix_type] = STATE(818), - [sym_stable_type_identifier] = STATE(819), - [sym_stable_identifier] = STATE(820), - [sym_generic_type] = STATE(818), - [sym_function_type] = STATE(818), - [sym_parameter_types] = STATE(821), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1390), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1190), + [anon_sym_import] = ACTIONS(1190), + [anon_sym_RBRACE] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_object] = ACTIONS(1190), + [anon_sym_class] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_val] = ACTIONS(1190), + [anon_sym_var] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_def] = ACTIONS(1190), + [anon_sym_abstract] = ACTIONS(1190), + [anon_sym_final] = ACTIONS(1190), + [anon_sym_sealed] = ACTIONS(1190), + [anon_sym_implicit] = ACTIONS(1190), + [anon_sym_lazy] = ACTIONS(1190), + [anon_sym_override] = ACTIONS(1190), + [anon_sym_private] = ACTIONS(1190), + [anon_sym_protected] = ACTIONS(1190), + [anon_sym_with] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [sym_operator_identifier] = ACTIONS(1700), + [sym_comment] = ACTIONS(464), }, [1051] = { - [sym__type] = STATE(1230), - [sym_compound_type] = STATE(818), - [sym_infix_type] = STATE(818), - [sym_stable_type_identifier] = STATE(819), - [sym_stable_identifier] = STATE(820), - [sym_generic_type] = STATE(818), - [sym_function_type] = STATE(818), - [sym_parameter_types] = STATE(821), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1390), + [sym__type] = STATE(1314), + [sym_compound_type] = STATE(737), + [sym_infix_type] = STATE(737), + [sym_stable_type_identifier] = STATE(738), + [sym_stable_identifier] = STATE(739), + [sym_generic_type] = STATE(737), + [sym_function_type] = STATE(737), + [sym_parameter_types] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1234), [sym_comment] = ACTIONS(34), }, [1052] = { - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_with] = ACTIONS(801), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_LF] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(689), + [anon_sym_package] = ACTIONS(1168), + [anon_sym_import] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_case] = ACTIONS(1168), + [anon_sym_object] = ACTIONS(1168), + [anon_sym_class] = ACTIONS(1168), + [anon_sym_trait] = ACTIONS(1168), + [anon_sym_val] = ACTIONS(1168), + [anon_sym_COLON] = ACTIONS(2112), + [anon_sym_EQ] = ACTIONS(2114), + [anon_sym_var] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1168), + [anon_sym_def] = ACTIONS(1168), + [anon_sym_abstract] = ACTIONS(1168), + [anon_sym_final] = ACTIONS(1168), + [anon_sym_sealed] = ACTIONS(1168), + [anon_sym_implicit] = ACTIONS(1168), + [anon_sym_lazy] = ACTIONS(1168), + [anon_sym_override] = ACTIONS(1168), + [anon_sym_private] = ACTIONS(1168), + [anon_sym_protected] = ACTIONS(1168), + [sym_comment] = ACTIONS(34), }, [1053] = { - [sym__type] = STATE(1231), - [sym_compound_type] = STATE(818), - [sym_infix_type] = STATE(818), - [sym_stable_type_identifier] = STATE(819), - [sym_stable_identifier] = STATE(820), - [sym_generic_type] = STATE(818), - [sym_function_type] = STATE(818), - [sym_parameter_types] = STATE(821), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1390), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_RBRACK] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_with] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1737), + [sym_comment] = ACTIONS(464), }, [1054] = { - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_extends] = ACTIONS(1989), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_LF] = ACTIONS(1989), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2116), + [sym_comment] = ACTIONS(34), }, [1055] = { - [aux_sym_class_parameters_repeat1] = STATE(468), - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(1991), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(1728), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1056] = { - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_SEMI] = ACTIONS(1993), - [anon_sym_LF] = ACTIONS(1993), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1057] = { - [sym_identifier] = ACTIONS(1995), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(2124), + [anon_sym_RBRACK] = ACTIONS(1728), [sym_comment] = ACTIONS(34), }, [1058] = { - [sym__type] = STATE(1234), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1059] = { - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_EQ] = ACTIONS(795), - [anon_sym_with] = ACTIONS(795), - [anon_sym_PIPE] = ACTIONS(795), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_LF] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(1317), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [1060] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(1235), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(532), + [anon_sym_with] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [1061] = { - [sym__type] = STATE(1236), - [sym_compound_type] = STATE(828), - [sym_infix_type] = STATE(828), - [sym_stable_type_identifier] = STATE(829), - [sym_stable_identifier] = STATE(830), - [sym_generic_type] = STATE(828), - [sym_function_type] = STATE(828), - [sym_parameter_types] = STATE(831), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1396), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(1319), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1062] = { - [sym__type] = STATE(1237), - [sym_compound_type] = STATE(828), - [sym_infix_type] = STATE(828), - [sym_stable_type_identifier] = STATE(829), - [sym_stable_identifier] = STATE(830), - [sym_generic_type] = STATE(828), - [sym_function_type] = STATE(828), - [sym_parameter_types] = STATE(831), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1396), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1063] = { - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_with] = ACTIONS(801), - [anon_sym_PIPE] = ACTIONS(801), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_LF] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_with] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [1064] = { - [sym__type] = STATE(1238), - [sym_compound_type] = STATE(828), - [sym_infix_type] = STATE(828), - [sym_stable_type_identifier] = STATE(829), - [sym_stable_identifier] = STATE(830), - [sym_generic_type] = STATE(828), - [sym_function_type] = STATE(828), - [sym_parameter_types] = STATE(831), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1396), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1295), + [anon_sym_with] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [1065] = { - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_with] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [sym_operator_identifier] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_LF] = ACTIONS(1997), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_with] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), + [sym_operator_identifier] = ACTIONS(1315), + [sym_comment] = ACTIONS(464), }, [1066] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(1239), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1067] = { - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_with] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [sym_operator_identifier] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_LF] = ACTIONS(1999), - [sym_comment] = ACTIONS(432), + [sym__string_middle] = ACTIONS(2028), + [sym__string_end] = ACTIONS(2028), + [sym_comment] = ACTIONS(34), }, [1068] = { - [sym_identifier] = ACTIONS(2001), + [sym__multiline_string_middle] = ACTIONS(2028), + [sym__multiline_string_end] = ACTIONS(2028), [sym_comment] = ACTIONS(34), }, [1069] = { - [sym__type] = STATE(1241), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_COLON] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_with] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1070] = { - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_with] = ACTIONS(795), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_LF] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2131), + [sym_comment] = ACTIONS(34), }, [1071] = { - [sym__type] = STATE(1242), - [sym_compound_type] = STATE(841), - [sym_infix_type] = STATE(841), - [sym_stable_type_identifier] = STATE(842), - [sym_stable_identifier] = STATE(843), - [sym_generic_type] = STATE(841), - [sym_function_type] = STATE(841), - [sym_parameter_types] = STATE(844), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1402), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_COLON] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1072] = { - [sym__type] = STATE(1243), - [sym_compound_type] = STATE(841), - [sym_infix_type] = STATE(841), - [sym_stable_type_identifier] = STATE(842), - [sym_stable_identifier] = STATE(843), - [sym_generic_type] = STATE(841), - [sym_function_type] = STATE(841), - [sym_parameter_types] = STATE(844), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1402), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_RBRACE] = ACTIONS(116), + [anon_sym_case] = ACTIONS(116), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_match] = ACTIONS(116), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [1073] = { - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_with] = ACTIONS(801), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_LF] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1321), + [anon_sym_DOLLAR] = ACTIONS(118), + [sym_comment] = ACTIONS(34), }, [1074] = { - [sym__type] = STATE(1244), - [sym_compound_type] = STATE(841), - [sym_infix_type] = STATE(841), - [sym_stable_type_identifier] = STATE(842), - [sym_stable_identifier] = STATE(843), - [sym_generic_type] = STATE(841), - [sym_function_type] = STATE(841), - [sym_parameter_types] = STATE(844), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1402), + [sym_interpolation] = STATE(1322), + [anon_sym_DOLLAR] = ACTIONS(120), [sym_comment] = ACTIONS(34), }, [1075] = { - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_with] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [sym_operator_identifier] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_LF] = ACTIONS(2003), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(1324), + [sym_import_declaration] = STATE(1324), + [sym_object_definition] = STATE(1324), + [sym_class_definition] = STATE(1324), + [sym_trait_definition] = STATE(1324), + [sym_val_definition] = STATE(1324), + [sym_val_declaration] = STATE(1324), + [sym_var_declaration] = STATE(1324), + [sym_var_definition] = STATE(1324), + [sym_type_definition] = STATE(1324), + [sym_function_definition] = STATE(1324), + [sym_function_declaration] = STATE(1324), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(1325), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(1326), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1076] = { - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_LF] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(1327), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [1077] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_parenthesized_expression] = STATE(1328), + [anon_sym_LPAREN] = ACTIONS(580), [sym_comment] = ACTIONS(34), }, [1078] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_LF] = ACTIONS(2009), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1081), + [sym__expression] = STATE(1329), + [sym_if_expression] = STATE(1081), + [sym_match_expression] = STATE(1081), + [sym_case_block] = STATE(1081), + [sym_assignment_expression] = STATE(1081), + [sym_generic_function] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_field_expression] = STATE(1081), + [sym_instance_expression] = STATE(1081), + [sym_infix_expression] = STATE(1081), + [sym_prefix_expression] = STATE(1081), + [sym_tuple_expression] = STATE(1081), + [sym_parenthesized_expression] = STATE(1081), + [sym_string_transform_expression] = STATE(1081), + [sym_string] = STATE(1081), + [sym__simple_string] = ACTIONS(1761), + [sym__string_start] = ACTIONS(1763), + [sym__multiline_string_start] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [sym_number] = ACTIONS(1779), + [sym_comment] = ACTIONS(34), }, [1079] = { - [sym_identifier] = ACTIONS(2011), + [sym_block] = STATE(1081), + [sym__expression] = STATE(1330), + [sym_if_expression] = STATE(1081), + [sym_match_expression] = STATE(1081), + [sym_case_block] = STATE(1081), + [sym_assignment_expression] = STATE(1081), + [sym_generic_function] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_field_expression] = STATE(1081), + [sym_instance_expression] = STATE(1081), + [sym_infix_expression] = STATE(1081), + [sym_prefix_expression] = STATE(1081), + [sym_tuple_expression] = STATE(1081), + [sym_parenthesized_expression] = STATE(1081), + [sym_string_transform_expression] = STATE(1081), + [sym_string] = STATE(1081), + [sym__simple_string] = ACTIONS(1761), + [sym__string_start] = ACTIONS(1763), + [sym__multiline_string_start] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [sym_number] = ACTIONS(1779), [sym_comment] = ACTIONS(34), }, [1080] = { - [sym__type] = STATE(1248), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [sym_string] = STATE(1331), + [sym__simple_string] = ACTIONS(1761), + [sym__string_start] = ACTIONS(1763), + [sym__multiline_string_start] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_case] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [1081] = { - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_EQ] = ACTIONS(795), - [anon_sym_with] = ACTIONS(795), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_LF] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_case] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [1082] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(1249), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1338), + [sym_arguments] = STATE(1339), + [anon_sym_DOT] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_case] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_EQ] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [sym_operator_identifier] = ACTIONS(2147), + [sym_comment] = ACTIONS(464), }, [1083] = { - [sym__type] = STATE(1250), - [sym_compound_type] = STATE(851), - [sym_infix_type] = STATE(851), - [sym_stable_type_identifier] = STATE(852), - [sym_stable_identifier] = STATE(853), - [sym_generic_type] = STATE(851), - [sym_function_type] = STATE(851), - [sym_parameter_types] = STATE(854), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1342), + [anon_sym_DOT] = ACTIONS(2149), + [anon_sym_EQ_GT] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_COLON] = ACTIONS(456), + [anon_sym_with] = ACTIONS(456), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_if] = ACTIONS(456), + [sym_identifier] = ACTIONS(462), + [sym_operator_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(464), }, [1084] = { - [sym__type] = STATE(1251), - [sym_compound_type] = STATE(851), - [sym_infix_type] = STATE(851), - [sym_stable_type_identifier] = STATE(852), - [sym_stable_identifier] = STATE(853), - [sym_generic_type] = STATE(851), - [sym_function_type] = STATE(851), - [sym_parameter_types] = STATE(854), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(34), + [anon_sym_EQ_GT] = ACTIONS(544), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_with] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(544), + [anon_sym_if] = ACTIONS(544), + [sym_identifier] = ACTIONS(2155), + [sym_operator_identifier] = ACTIONS(2155), + [sym_comment] = ACTIONS(464), }, [1085] = { - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_LF] = ACTIONS(2013), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_if] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [1086] = { - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_with] = ACTIONS(801), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_LF] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1345), + [anon_sym_EQ_GT] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_with] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_if] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [sym_operator_identifier] = ACTIONS(478), + [sym_comment] = ACTIONS(464), }, [1087] = { - [sym__type] = STATE(1252), - [sym_compound_type] = STATE(851), - [sym_infix_type] = STATE(851), - [sym_stable_type_identifier] = STATE(852), - [sym_stable_identifier] = STATE(853), - [sym_generic_type] = STATE(851), - [sym_function_type] = STATE(851), - [sym_parameter_types] = STATE(854), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(2149), [sym_comment] = ACTIONS(34), }, [1088] = { - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_EQ] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_LF] = ACTIONS(2015), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(2157), + [sym_comment] = ACTIONS(34), }, [1089] = { - [aux_sym_parameters_repeat1] = STATE(634), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(2017), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_match] = ACTIONS(116), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [1090] = { - [sym_block] = STATE(1255), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_EQ] = ACTIONS(2021), - [anon_sym_with] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [sym_operator_identifier] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_LF] = ACTIONS(2019), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1347), + [anon_sym_DOLLAR] = ACTIONS(118), + [sym_comment] = ACTIONS(34), }, [1091] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_LF] = ACTIONS(2013), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1348), + [anon_sym_DOLLAR] = ACTIONS(120), + [sym_comment] = ACTIONS(34), }, [1092] = { - [sym__type] = STATE(1256), - [sym_compound_type] = STATE(851), - [sym_infix_type] = STATE(851), - [sym_stable_type_identifier] = STATE(852), - [sym_stable_identifier] = STATE(853), - [sym_generic_type] = STATE(851), - [sym_function_type] = STATE(851), - [sym_parameter_types] = STATE(854), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1408), + [sym_package_clause] = STATE(1350), + [sym_import_declaration] = STATE(1350), + [sym_object_definition] = STATE(1350), + [sym_class_definition] = STATE(1350), + [sym_trait_definition] = STATE(1350), + [sym_val_definition] = STATE(1350), + [sym_val_declaration] = STATE(1350), + [sym_var_declaration] = STATE(1350), + [sym_var_definition] = STATE(1350), + [sym_type_definition] = STATE(1350), + [sym_function_definition] = STATE(1350), + [sym_function_declaration] = STATE(1350), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(1351), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(1352), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1093] = { - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_LF] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(1353), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [1094] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2023), + [sym_parenthesized_expression] = STATE(1354), + [anon_sym_LPAREN] = ACTIONS(580), [sym_comment] = ACTIONS(34), }, [1095] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2023), + [sym_block] = STATE(1098), + [sym__expression] = STATE(1355), + [sym_if_expression] = STATE(1098), + [sym_match_expression] = STATE(1098), + [sym_case_block] = STATE(1098), + [sym_assignment_expression] = STATE(1098), + [sym_generic_function] = STATE(1098), + [sym_call_expression] = STATE(1098), + [sym_field_expression] = STATE(1098), + [sym_instance_expression] = STATE(1098), + [sym_infix_expression] = STATE(1098), + [sym_prefix_expression] = STATE(1098), + [sym_tuple_expression] = STATE(1098), + [sym_parenthesized_expression] = STATE(1098), + [sym_string_transform_expression] = STATE(1098), + [sym_string] = STATE(1098), + [sym__simple_string] = ACTIONS(1783), + [sym__string_start] = ACTIONS(1785), + [sym__multiline_string_start] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [sym_number] = ACTIONS(1801), [sym_comment] = ACTIONS(34), }, [1096] = { - [anon_sym_DOT] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_LF] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1098), + [sym__expression] = STATE(1356), + [sym_if_expression] = STATE(1098), + [sym_match_expression] = STATE(1098), + [sym_case_block] = STATE(1098), + [sym_assignment_expression] = STATE(1098), + [sym_generic_function] = STATE(1098), + [sym_call_expression] = STATE(1098), + [sym_field_expression] = STATE(1098), + [sym_instance_expression] = STATE(1098), + [sym_infix_expression] = STATE(1098), + [sym_prefix_expression] = STATE(1098), + [sym_tuple_expression] = STATE(1098), + [sym_parenthesized_expression] = STATE(1098), + [sym_string_transform_expression] = STATE(1098), + [sym_string] = STATE(1098), + [sym__simple_string] = ACTIONS(1783), + [sym__string_start] = ACTIONS(1785), + [sym__multiline_string_start] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [sym_number] = ACTIONS(1801), + [sym_comment] = ACTIONS(34), }, [1097] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [sym_string] = STATE(1357), + [sym__simple_string] = ACTIONS(1783), + [sym__string_start] = ACTIONS(1785), + [sym__multiline_string_start] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_EQ_GT] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [1098] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2029), - [anon_sym_LF] = ACTIONS(2029), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_EQ_GT] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [1099] = { - [anon_sym_DOT] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1364), + [sym_arguments] = STATE(1365), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_EQ_GT] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [sym_operator_identifier] = ACTIONS(2173), + [sym_comment] = ACTIONS(464), }, [1100] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2031), + [sym_block] = STATE(1081), + [sym__expression] = STATE(1366), + [sym_if_expression] = STATE(1081), + [sym_match_expression] = STATE(1081), + [sym_case_block] = STATE(1081), + [sym_assignment_expression] = STATE(1081), + [sym_generic_function] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_field_expression] = STATE(1081), + [sym_instance_expression] = STATE(1081), + [sym_infix_expression] = STATE(1081), + [sym_prefix_expression] = STATE(1081), + [sym_tuple_expression] = STATE(1081), + [sym_parenthesized_expression] = STATE(1081), + [sym_string_transform_expression] = STATE(1081), + [sym_string] = STATE(1081), + [sym__simple_string] = ACTIONS(1761), + [sym__string_start] = ACTIONS(1763), + [sym__multiline_string_start] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [sym_number] = ACTIONS(1779), [sym_comment] = ACTIONS(34), }, [1101] = { - [sym_type_arguments] = STATE(880), - [sym_arguments] = STATE(881), - [anon_sym_DOT] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [sym_operator_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(1426), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(2028), + [anon_sym_package] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_trait] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_val] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_final] = ACTIONS(2175), + [anon_sym_sealed] = ACTIONS(2175), + [anon_sym_implicit] = ACTIONS(2175), + [anon_sym_lazy] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), }, [1102] = { - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_LF] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_match] = ACTIONS(883), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), }, [1103] = { - [aux_sym_parameter_types_repeat1] = STATE(1263), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2035), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_COMMA] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_match] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), }, [1104] = { - [sym_type_arguments] = STATE(880), - [sym_arguments] = STATE(881), - [anon_sym_DOT] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [sym_identifier] = ACTIONS(1438), - [sym_operator_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_LF] = ACTIONS(1453), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1105] = { - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_EQ] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), }, [1106] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1265), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2037), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(1369), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2181), + [sym_comment] = ACTIONS(34), }, [1107] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_LF] = ACTIONS(2039), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(1370), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2181), + [sym_comment] = ACTIONS(34), }, [1108] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1267), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(665), + [anon_sym_else] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [1109] = { - [anon_sym_DOT] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_EQ] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_match] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_LF] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(1373), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_LF] = ACTIONS(2185), + [sym_comment] = ACTIONS(464), }, [1110] = { - [sym_type_arguments] = STATE(880), - [sym_arguments] = STATE(881), - [anon_sym_DOT] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(1373), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_LF] = ACTIONS(2185), + [sym_comment] = ACTIONS(464), }, [1111] = { - [sym_template_body] = STATE(1224), - [sym_extends_clause] = STATE(1225), - [sym_class_parameters] = STATE(1268), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_extends] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1979), - [anon_sym_LF] = ACTIONS(1979), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [1112] = { - [sym_block] = STATE(1255), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_COLON] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_LF] = ACTIONS(2019), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1376), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1113] = { - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(826), + [sym__expression] = STATE(1377), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), }, [1114] = { - [anon_sym_DOT] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_EQ] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_match] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_LF] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [1115] = { - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_match] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_else] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [1116] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [1117] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2191), + [sym_comment] = ACTIONS(34), }, [1118] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(2047), - [anon_sym_package] = ACTIONS(2049), - [anon_sym_import] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(2049), - [anon_sym_object] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(2049), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(2049), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_final] = ACTIONS(2049), - [anon_sym_sealed] = ACTIONS(2049), - [anon_sym_implicit] = ACTIONS(2049), - [anon_sym_lazy] = ACTIONS(2049), - [anon_sym_override] = ACTIONS(2049), - [anon_sym_private] = ACTIONS(2049), - [anon_sym_protected] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1379), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1119] = { - [ts_builtin_sym_end] = ACTIONS(2051), - [anon_sym_package] = ACTIONS(2051), - [anon_sym_import] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_case] = ACTIONS(2051), - [anon_sym_object] = ACTIONS(2051), - [anon_sym_class] = ACTIONS(2051), - [anon_sym_trait] = ACTIONS(2051), - [anon_sym_val] = ACTIONS(2051), - [anon_sym_var] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2051), - [anon_sym_def] = ACTIONS(2051), - [anon_sym_abstract] = ACTIONS(2051), - [anon_sym_final] = ACTIONS(2051), - [anon_sym_sealed] = ACTIONS(2051), - [anon_sym_implicit] = ACTIONS(2051), - [anon_sym_lazy] = ACTIONS(2051), - [anon_sym_override] = ACTIONS(2051), - [anon_sym_private] = ACTIONS(2051), - [anon_sym_protected] = ACTIONS(2051), + [sym_block] = STATE(826), + [sym__expression] = STATE(1380), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), [sym_comment] = ACTIONS(34), }, [1120] = { - [sym_block] = STATE(158), - [sym__expression] = STATE(1270), - [sym_if_expression] = STATE(158), - [sym_match_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_generic_function] = STATE(158), - [sym_call_expression] = STATE(158), - [sym_field_expression] = STATE(158), - [sym_instance_expression] = STATE(158), - [sym_infix_expression] = STATE(158), - [sym_prefix_expression] = STATE(158), - [sym_tuple_expression] = STATE(158), - [sym_parenthesized_expression] = STATE(158), - [sym_string_transform_expression] = STATE(158), - [sym_string] = STATE(158), - [sym__simple_string] = ACTIONS(272), - [sym__string_start] = ACTIONS(274), - [sym__multiline_string_start] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_new] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(286), - [sym_identifier] = ACTIONS(288), - [sym_number] = ACTIONS(290), + [sym_block] = STATE(340), + [sym__expression] = STATE(1382), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [1121] = { - [ts_builtin_sym_end] = ACTIONS(2047), - [anon_sym_package] = ACTIONS(2047), - [anon_sym_import] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_case] = ACTIONS(2047), - [anon_sym_object] = ACTIONS(2047), - [anon_sym_class] = ACTIONS(2047), - [anon_sym_trait] = ACTIONS(2047), - [anon_sym_val] = ACTIONS(2047), - [anon_sym_var] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2047), - [anon_sym_def] = ACTIONS(2047), - [anon_sym_abstract] = ACTIONS(2047), - [anon_sym_final] = ACTIONS(2047), - [anon_sym_sealed] = ACTIONS(2047), - [anon_sym_implicit] = ACTIONS(2047), - [anon_sym_lazy] = ACTIONS(2047), - [anon_sym_override] = ACTIONS(2047), - [anon_sym_private] = ACTIONS(2047), - [anon_sym_protected] = ACTIONS(2047), + [sym_block] = STATE(340), + [sym__expression] = STATE(1383), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [1122] = { - [anon_sym_package] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_def] = ACTIONS(1159), - [anon_sym_abstract] = ACTIONS(1159), - [anon_sym_final] = ACTIONS(1159), - [anon_sym_sealed] = ACTIONS(1159), - [anon_sym_implicit] = ACTIONS(1159), - [anon_sym_lazy] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [sym_case_block] = STATE(1385), + [anon_sym_LBRACE] = ACTIONS(2195), + [sym_comment] = ACTIONS(34), }, [1123] = { - [aux_sym_parameter_types_repeat1] = STATE(1272), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2053), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(826), + [sym__expression] = STATE(1386), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), }, [1124] = { - [anon_sym_package] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_object] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_trait] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_def] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_final] = ACTIONS(1177), - [anon_sym_sealed] = ACTIONS(1177), - [anon_sym_implicit] = ACTIONS(1177), - [anon_sym_lazy] = ACTIONS(1177), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [1125] = { - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_trait] = ACTIONS(1183), - [anon_sym_val] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_def] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_implicit] = ACTIONS(1183), - [anon_sym_lazy] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1387), + [sym_case_block] = STATE(1387), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [1126] = { - [anon_sym_package] = ACTIONS(1189), - [anon_sym_import] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_object] = ACTIONS(1189), - [anon_sym_class] = ACTIONS(1189), - [anon_sym_trait] = ACTIONS(1189), - [anon_sym_val] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_abstract] = ACTIONS(1189), - [anon_sym_final] = ACTIONS(1189), - [anon_sym_sealed] = ACTIONS(1189), - [anon_sym_implicit] = ACTIONS(1189), - [anon_sym_lazy] = ACTIONS(1189), - [anon_sym_override] = ACTIONS(1189), - [anon_sym_private] = ACTIONS(1189), - [anon_sym_protected] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(1497), - [sym_identifier] = ACTIONS(1499), - [sym_operator_identifier] = ACTIONS(1499), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1127] = { - [anon_sym_package] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_def] = ACTIONS(1159), - [anon_sym_abstract] = ACTIONS(1159), - [anon_sym_final] = ACTIONS(1159), - [anon_sym_sealed] = ACTIONS(1159), - [anon_sym_implicit] = ACTIONS(1159), - [anon_sym_lazy] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2199), + [sym_comment] = ACTIONS(34), }, [1128] = { - [aux_sym_parameter_types_repeat1] = STATE(1274), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), }, [1129] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(1232), - [anon_sym_import] = ACTIONS(1232), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_object] = ACTIONS(1232), - [anon_sym_class] = ACTIONS(1232), - [anon_sym_trait] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1232), - [anon_sym_type] = ACTIONS(1232), - [anon_sym_def] = ACTIONS(1232), - [anon_sym_abstract] = ACTIONS(1232), - [anon_sym_final] = ACTIONS(1232), - [anon_sym_sealed] = ACTIONS(1232), - [anon_sym_implicit] = ACTIONS(1232), - [anon_sym_lazy] = ACTIONS(1232), - [anon_sym_override] = ACTIONS(1232), - [anon_sym_private] = ACTIONS(1232), - [anon_sym_protected] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2201), + [sym_comment] = ACTIONS(34), }, [1130] = { - [anon_sym_package] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_object] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_trait] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(1177), - [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_EQ] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_def] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_final] = ACTIONS(1177), - [anon_sym_sealed] = ACTIONS(1177), - [anon_sym_implicit] = ACTIONS(1177), - [anon_sym_lazy] = ACTIONS(1177), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), }, [1131] = { - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_trait] = ACTIONS(1183), - [anon_sym_val] = ACTIONS(1183), - [anon_sym_COLON] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_def] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_implicit] = ACTIONS(1183), - [anon_sym_lazy] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym_parenthesized_expression] = STATE(1390), + [anon_sym_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(34), }, [1132] = { - [anon_sym_package] = ACTIONS(1189), - [anon_sym_import] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_object] = ACTIONS(1189), - [anon_sym_class] = ACTIONS(1189), - [anon_sym_trait] = ACTIONS(1189), - [anon_sym_val] = ACTIONS(1189), - [anon_sym_COLON] = ACTIONS(1189), - [anon_sym_EQ] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_abstract] = ACTIONS(1189), - [anon_sym_final] = ACTIONS(1189), - [anon_sym_sealed] = ACTIONS(1189), - [anon_sym_implicit] = ACTIONS(1189), - [anon_sym_lazy] = ACTIONS(1189), - [anon_sym_override] = ACTIONS(1189), - [anon_sym_private] = ACTIONS(1189), - [anon_sym_protected] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1189), - [sym_identifier] = ACTIONS(1511), - [sym_operator_identifier] = ACTIONS(1511), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(826), + [sym__expression] = STATE(1114), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), }, [1133] = { - [anon_sym_package] = ACTIONS(482), - [anon_sym_import] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_case] = ACTIONS(482), - [anon_sym_object] = ACTIONS(482), - [anon_sym_class] = ACTIONS(482), - [anon_sym_trait] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_val] = ACTIONS(482), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_var] = ACTIONS(482), - [anon_sym_type] = ACTIONS(482), - [anon_sym_def] = ACTIONS(482), - [anon_sym_abstract] = ACTIONS(482), - [anon_sym_final] = ACTIONS(482), - [anon_sym_sealed] = ACTIONS(482), - [anon_sym_implicit] = ACTIONS(482), - [anon_sym_lazy] = ACTIONS(482), - [anon_sym_override] = ACTIONS(482), - [anon_sym_private] = ACTIONS(482), - [anon_sym_protected] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_match] = ACTIONS(482), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(826), + [sym__expression] = STATE(1115), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), }, [1134] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2057), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(1833), + [sym_identifier] = ACTIONS(2207), + [sym_operator_identifier] = ACTIONS(2207), + [sym_comment] = ACTIONS(464), }, [1135] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2057), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1429), + [sym_operator_identifier] = ACTIONS(1429), + [sym_comment] = ACTIONS(464), }, [1136] = { - [anon_sym_package] = ACTIONS(1238), - [anon_sym_import] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_object] = ACTIONS(1238), - [anon_sym_class] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_val] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_var] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_def] = ACTIONS(1238), - [anon_sym_abstract] = ACTIONS(1238), - [anon_sym_final] = ACTIONS(1238), - [anon_sym_sealed] = ACTIONS(1238), - [anon_sym_implicit] = ACTIONS(1238), - [anon_sym_lazy] = ACTIONS(1238), - [anon_sym_override] = ACTIONS(1238), - [anon_sym_private] = ACTIONS(1238), - [anon_sym_protected] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(512), + [anon_sym_package] = ACTIONS(514), + [anon_sym_import] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_case] = ACTIONS(514), + [anon_sym_object] = ACTIONS(514), + [anon_sym_class] = ACTIONS(514), + [anon_sym_trait] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_val] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_var] = ACTIONS(514), + [anon_sym_type] = ACTIONS(514), + [anon_sym_def] = ACTIONS(514), + [anon_sym_abstract] = ACTIONS(514), + [anon_sym_final] = ACTIONS(514), + [anon_sym_sealed] = ACTIONS(514), + [anon_sym_implicit] = ACTIONS(514), + [anon_sym_lazy] = ACTIONS(514), + [anon_sym_override] = ACTIONS(514), + [anon_sym_private] = ACTIONS(514), + [anon_sym_protected] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_else] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), }, [1137] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2209), [sym_comment] = ACTIONS(34), }, [1138] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2063), - [anon_sym_LF] = ACTIONS(2063), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2209), + [sym_comment] = ACTIONS(34), }, [1139] = { - [anon_sym_package] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), - [anon_sym_class] = ACTIONS(1282), - [anon_sym_trait] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_val] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_var] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_abstract] = ACTIONS(1282), - [anon_sym_final] = ACTIONS(1282), - [anon_sym_sealed] = ACTIONS(1282), - [anon_sym_implicit] = ACTIONS(1282), - [anon_sym_lazy] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1130), + [anon_sym_package] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), + [anon_sym_class] = ACTIONS(1358), + [anon_sym_trait] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_val] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_var] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_def] = ACTIONS(1358), + [anon_sym_abstract] = ACTIONS(1358), + [anon_sym_final] = ACTIONS(1358), + [anon_sym_sealed] = ACTIONS(1358), + [anon_sym_implicit] = ACTIONS(1358), + [anon_sym_lazy] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), }, [1140] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2065), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1141] = { - [anon_sym_package] = ACTIONS(112), - [anon_sym_import] = ACTIONS(112), - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_RBRACE] = ACTIONS(112), - [anon_sym_case] = ACTIONS(112), - [anon_sym_object] = ACTIONS(112), - [anon_sym_class] = ACTIONS(112), - [anon_sym_trait] = ACTIONS(112), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_val] = ACTIONS(112), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_var] = ACTIONS(112), - [anon_sym_type] = ACTIONS(112), - [anon_sym_def] = ACTIONS(112), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_final] = ACTIONS(112), - [anon_sym_sealed] = ACTIONS(112), - [anon_sym_implicit] = ACTIONS(112), - [anon_sym_lazy] = ACTIONS(112), - [anon_sym_override] = ACTIONS(112), - [anon_sym_private] = ACTIONS(112), - [anon_sym_protected] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_else] = ACTIONS(112), - [anon_sym_match] = ACTIONS(112), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_LF] = ACTIONS(2215), + [sym_comment] = ACTIONS(464), }, [1142] = { - [sym_interpolation] = STATE(1279), - [anon_sym_DOLLAR] = ACTIONS(114), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1368), + [anon_sym_package] = ACTIONS(1370), + [anon_sym_import] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_object] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(1370), + [anon_sym_trait] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_val] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_def] = ACTIONS(1370), + [anon_sym_abstract] = ACTIONS(1370), + [anon_sym_final] = ACTIONS(1370), + [anon_sym_sealed] = ACTIONS(1370), + [anon_sym_implicit] = ACTIONS(1370), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_override] = ACTIONS(1370), + [anon_sym_private] = ACTIONS(1370), + [anon_sym_protected] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_match] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), }, [1143] = { - [sym_interpolation] = STATE(1280), - [anon_sym_DOLLAR] = ACTIONS(116), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1413), + [anon_sym_package] = ACTIONS(1415), + [anon_sym_import] = ACTIONS(1415), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_object] = ACTIONS(1415), + [anon_sym_class] = ACTIONS(1415), + [anon_sym_trait] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_val] = ACTIONS(1415), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1415), + [anon_sym_def] = ACTIONS(1415), + [anon_sym_abstract] = ACTIONS(1415), + [anon_sym_final] = ACTIONS(1415), + [anon_sym_sealed] = ACTIONS(1415), + [anon_sym_implicit] = ACTIONS(1415), + [anon_sym_lazy] = ACTIONS(1415), + [anon_sym_override] = ACTIONS(1415), + [anon_sym_private] = ACTIONS(1415), + [anon_sym_protected] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), }, [1144] = { - [sym_package_clause] = STATE(1282), - [sym_import_declaration] = STATE(1282), - [sym_object_definition] = STATE(1282), - [sym_class_definition] = STATE(1282), - [sym_trait_definition] = STATE(1282), - [sym_val_definition] = STATE(1282), - [sym_val_declaration] = STATE(1282), - [sym_var_declaration] = STATE(1282), - [sym_var_definition] = STATE(1282), - [sym_type_definition] = STATE(1282), - [sym_function_definition] = STATE(1282), - [sym_function_declaration] = STATE(1282), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(1283), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2217), [sym_comment] = ACTIONS(34), }, [1145] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1284), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(862), + [sym_arguments] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(1433), + [anon_sym_package] = ACTIONS(1435), + [anon_sym_import] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_object] = ACTIONS(1435), + [anon_sym_class] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_val] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_abstract] = ACTIONS(1435), + [anon_sym_final] = ACTIONS(1435), + [anon_sym_sealed] = ACTIONS(1435), + [anon_sym_implicit] = ACTIONS(1435), + [anon_sym_lazy] = ACTIONS(1435), + [anon_sym_override] = ACTIONS(1435), + [anon_sym_private] = ACTIONS(1435), + [anon_sym_protected] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), + [sym_operator_identifier] = ACTIONS(1449), + [sym_comment] = ACTIONS(464), }, [1146] = { - [sym_parenthesized_expression] = STATE(1285), - [anon_sym_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1451), + [anon_sym_package] = ACTIONS(1453), + [anon_sym_import] = ACTIONS(1453), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_case] = ACTIONS(1453), + [anon_sym_object] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1453), + [anon_sym_trait] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_val] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_abstract] = ACTIONS(1453), + [anon_sym_final] = ACTIONS(1453), + [anon_sym_sealed] = ACTIONS(1453), + [anon_sym_implicit] = ACTIONS(1453), + [anon_sym_lazy] = ACTIONS(1453), + [anon_sym_override] = ACTIONS(1453), + [anon_sym_private] = ACTIONS(1453), + [anon_sym_protected] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), }, [1147] = { - [sym_block] = STATE(1150), - [sym__expression] = STATE(1286), - [sym_if_expression] = STATE(1150), - [sym_match_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1150), - [sym_generic_function] = STATE(1150), - [sym_call_expression] = STATE(1150), - [sym_field_expression] = STATE(1150), - [sym_instance_expression] = STATE(1150), - [sym_infix_expression] = STATE(1150), - [sym_prefix_expression] = STATE(1150), - [sym_tuple_expression] = STATE(1150), - [sym_parenthesized_expression] = STATE(1150), - [sym_string_transform_expression] = STATE(1150), - [sym_string] = STATE(1150), - [sym__simple_string] = ACTIONS(1847), - [sym__string_start] = ACTIONS(1849), - [sym__multiline_string_start] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [sym_number] = ACTIONS(1865), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(1400), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1148] = { - [sym_block] = STATE(1150), - [sym__expression] = STATE(1287), - [sym_if_expression] = STATE(1150), - [sym_match_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1150), - [sym_generic_function] = STATE(1150), - [sym_call_expression] = STATE(1150), - [sym_field_expression] = STATE(1150), - [sym_instance_expression] = STATE(1150), - [sym_infix_expression] = STATE(1150), - [sym_prefix_expression] = STATE(1150), - [sym_tuple_expression] = STATE(1150), - [sym_parenthesized_expression] = STATE(1150), - [sym_string_transform_expression] = STATE(1150), - [sym_string] = STATE(1150), - [sym__simple_string] = ACTIONS(1847), - [sym__string_start] = ACTIONS(1849), - [sym__multiline_string_start] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [sym_number] = ACTIONS(1865), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(862), + [sym_arguments] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(1459), + [anon_sym_package] = ACTIONS(1461), + [anon_sym_import] = ACTIONS(1461), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_object] = ACTIONS(1461), + [anon_sym_class] = ACTIONS(1461), + [anon_sym_trait] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_val] = ACTIONS(1461), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1461), + [anon_sym_def] = ACTIONS(1461), + [anon_sym_abstract] = ACTIONS(1461), + [anon_sym_final] = ACTIONS(1461), + [anon_sym_sealed] = ACTIONS(1461), + [anon_sym_implicit] = ACTIONS(1461), + [anon_sym_lazy] = ACTIONS(1461), + [anon_sym_override] = ACTIONS(1461), + [anon_sym_private] = ACTIONS(1461), + [anon_sym_protected] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1449), + [sym_operator_identifier] = ACTIONS(1449), + [sym_comment] = ACTIONS(464), }, [1149] = { - [sym_string] = STATE(1288), - [sym__simple_string] = ACTIONS(1847), - [sym__string_start] = ACTIONS(1849), - [sym__multiline_string_start] = ACTIONS(1851), - [anon_sym_package] = ACTIONS(550), - [anon_sym_import] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_case] = ACTIONS(550), - [anon_sym_object] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_val] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_var] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_def] = ACTIONS(550), - [anon_sym_abstract] = ACTIONS(550), - [anon_sym_final] = ACTIONS(550), - [anon_sym_sealed] = ACTIONS(550), - [anon_sym_implicit] = ACTIONS(550), - [anon_sym_lazy] = ACTIONS(550), - [anon_sym_override] = ACTIONS(550), - [anon_sym_private] = ACTIONS(550), - [anon_sym_protected] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1463), + [anon_sym_package] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_object] = ACTIONS(1465), + [anon_sym_class] = ACTIONS(1465), + [anon_sym_trait] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_val] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1465), + [anon_sym_abstract] = ACTIONS(1465), + [anon_sym_final] = ACTIONS(1465), + [anon_sym_sealed] = ACTIONS(1465), + [anon_sym_implicit] = ACTIONS(1465), + [anon_sym_lazy] = ACTIONS(1465), + [anon_sym_override] = ACTIONS(1465), + [anon_sym_private] = ACTIONS(1465), + [anon_sym_protected] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_match] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), }, [1150] = { - [anon_sym_package] = ACTIONS(550), - [anon_sym_import] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_case] = ACTIONS(550), - [anon_sym_object] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_val] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_var] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_def] = ACTIONS(550), - [anon_sym_abstract] = ACTIONS(550), - [anon_sym_final] = ACTIONS(550), - [anon_sym_sealed] = ACTIONS(550), - [anon_sym_implicit] = ACTIONS(550), - [anon_sym_lazy] = ACTIONS(550), - [anon_sym_override] = ACTIONS(550), - [anon_sym_private] = ACTIONS(550), - [anon_sym_protected] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1402), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2223), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1151] = { - [sym_type_arguments] = STATE(1296), - [sym_arguments] = STATE(1297), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_object] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_val] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(2073), - [anon_sym_var] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_sealed] = ACTIONS(1300), - [anon_sym_implicit] = ACTIONS(1300), - [anon_sym_lazy] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_protected] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2081), - [sym_operator_identifier] = ACTIONS(2081), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(2225), + [anon_sym_package] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(2227), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_def] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_final] = ACTIONS(2227), + [anon_sym_sealed] = ACTIONS(2227), + [anon_sym_implicit] = ACTIONS(2227), + [anon_sym_lazy] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [1152] = { - [anon_sym_package] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(1318), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_object] = ACTIONS(1318), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_trait] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_val] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_var] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_def] = ACTIONS(1318), - [anon_sym_abstract] = ACTIONS(1318), - [anon_sym_final] = ACTIONS(1318), - [anon_sym_sealed] = ACTIONS(1318), - [anon_sym_implicit] = ACTIONS(1318), - [anon_sym_lazy] = ACTIONS(1318), - [anon_sym_override] = ACTIONS(1318), - [anon_sym_private] = ACTIONS(1318), - [anon_sym_protected] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(849), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [1153] = { - [aux_sym_parameter_types_repeat1] = STATE(1299), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2083), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1473), + [anon_sym_package] = ACTIONS(1475), + [anon_sym_import] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_case] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [anon_sym_class] = ACTIONS(1475), + [anon_sym_trait] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_val] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_var] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1475), + [anon_sym_abstract] = ACTIONS(1475), + [anon_sym_final] = ACTIONS(1475), + [anon_sym_sealed] = ACTIONS(1475), + [anon_sym_implicit] = ACTIONS(1475), + [anon_sym_lazy] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1475), + [anon_sym_match] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), }, [1154] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(1326), - [anon_sym_import] = ACTIONS(1326), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_object] = ACTIONS(1326), - [anon_sym_class] = ACTIONS(1326), - [anon_sym_trait] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1326), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_def] = ACTIONS(1326), - [anon_sym_abstract] = ACTIONS(1326), - [anon_sym_final] = ACTIONS(1326), - [anon_sym_sealed] = ACTIONS(1326), - [anon_sym_implicit] = ACTIONS(1326), - [anon_sym_lazy] = ACTIONS(1326), - [anon_sym_override] = ACTIONS(1326), - [anon_sym_private] = ACTIONS(1326), - [anon_sym_protected] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(862), + [sym_arguments] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(1479), + [anon_sym_package] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_object] = ACTIONS(1481), + [anon_sym_class] = ACTIONS(1481), + [anon_sym_trait] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_val] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_type] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_abstract] = ACTIONS(1481), + [anon_sym_final] = ACTIONS(1481), + [anon_sym_sealed] = ACTIONS(1481), + [anon_sym_implicit] = ACTIONS(1481), + [anon_sym_lazy] = ACTIONS(1481), + [anon_sym_override] = ACTIONS(1481), + [anon_sym_private] = ACTIONS(1481), + [anon_sym_protected] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), }, [1155] = { - [anon_sym_package] = ACTIONS(1330), - [anon_sym_import] = ACTIONS(1330), - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [anon_sym_class] = ACTIONS(1330), - [anon_sym_trait] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_val] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_var] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_def] = ACTIONS(1330), - [anon_sym_abstract] = ACTIONS(1330), - [anon_sym_final] = ACTIONS(1330), - [anon_sym_sealed] = ACTIONS(1330), - [anon_sym_implicit] = ACTIONS(1330), - [anon_sym_lazy] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1485), + [anon_sym_package] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_case] = ACTIONS(1487), + [anon_sym_object] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1487), + [anon_sym_trait] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_val] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_var] = ACTIONS(1487), + [anon_sym_type] = ACTIONS(1487), + [anon_sym_def] = ACTIONS(1487), + [anon_sym_abstract] = ACTIONS(1487), + [anon_sym_final] = ACTIONS(1487), + [anon_sym_sealed] = ACTIONS(1487), + [anon_sym_implicit] = ACTIONS(1487), + [anon_sym_lazy] = ACTIONS(1487), + [anon_sym_override] = ACTIONS(1487), + [anon_sym_private] = ACTIONS(1487), + [anon_sym_protected] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_else] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), }, [1156] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1301), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1157] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1303), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_package] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_val] = ACTIONS(2233), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_def] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_final] = ACTIONS(2233), + [anon_sym_sealed] = ACTIONS(2233), + [anon_sym_implicit] = ACTIONS(2233), + [anon_sym_lazy] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), }, [1158] = { - [anon_sym_package] = ACTIONS(1342), - [anon_sym_import] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_class] = ACTIONS(1342), - [anon_sym_trait] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_val] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_var] = ACTIONS(1342), - [anon_sym_type] = ACTIONS(1342), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_final] = ACTIONS(1342), - [anon_sym_sealed] = ACTIONS(1342), - [anon_sym_implicit] = ACTIONS(1342), - [anon_sym_lazy] = ACTIONS(1342), - [anon_sym_override] = ACTIONS(1342), - [anon_sym_private] = ACTIONS(1342), - [anon_sym_protected] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1159] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(1348), - [anon_sym_import] = ACTIONS(1348), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_object] = ACTIONS(1348), - [anon_sym_class] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(1348), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_var] = ACTIONS(1348), - [anon_sym_type] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1348), - [anon_sym_abstract] = ACTIONS(1348), - [anon_sym_final] = ACTIONS(1348), - [anon_sym_sealed] = ACTIONS(1348), - [anon_sym_implicit] = ACTIONS(1348), - [anon_sym_lazy] = ACTIONS(1348), - [anon_sym_override] = ACTIONS(1348), - [anon_sym_private] = ACTIONS(1348), - [anon_sym_protected] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2120), + [sym_comment] = ACTIONS(464), }, [1160] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(1364), - [anon_sym_import] = ACTIONS(1364), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_object] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1364), - [anon_sym_trait] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(1364), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1364), - [anon_sym_type] = ACTIONS(1364), - [anon_sym_def] = ACTIONS(1364), - [anon_sym_abstract] = ACTIONS(1364), - [anon_sym_final] = ACTIONS(1364), - [anon_sym_sealed] = ACTIONS(1364), - [anon_sym_implicit] = ACTIONS(1364), - [anon_sym_lazy] = ACTIONS(1364), - [anon_sym_override] = ACTIONS(1364), - [anon_sym_private] = ACTIONS(1364), - [anon_sym_protected] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [aux_sym_import_selectors_repeat1] = STATE(1405), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_EQ_GT] = ACTIONS(763), + [sym_comment] = ACTIONS(34), }, [1161] = { - [anon_sym_package] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_def] = ACTIONS(1159), - [anon_sym_abstract] = ACTIONS(1159), - [anon_sym_final] = ACTIONS(1159), - [anon_sym_sealed] = ACTIONS(1159), - [anon_sym_implicit] = ACTIONS(1159), - [anon_sym_lazy] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [aux_sym_import_selectors_repeat1] = STATE(1405), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(2237), + [sym_comment] = ACTIONS(34), }, [1162] = { - [aux_sym_parameter_types_repeat1] = STATE(1305), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_EQ] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_LF] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), }, [1163] = { - [anon_sym_package] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_object] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_trait] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_def] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_final] = ACTIONS(1177), - [anon_sym_sealed] = ACTIONS(1177), - [anon_sym_implicit] = ACTIONS(1177), - [anon_sym_lazy] = ACTIONS(1177), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_LF] = ACTIONS(2239), + [sym_comment] = ACTIONS(464), }, [1164] = { - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_trait] = ACTIONS(1183), - [anon_sym_val] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_def] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_implicit] = ACTIONS(1183), - [anon_sym_lazy] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(1406), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_LF] = ACTIONS(2239), + [sym_comment] = ACTIONS(464), }, [1165] = { - [anon_sym_package] = ACTIONS(1189), - [anon_sym_import] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_object] = ACTIONS(1189), - [anon_sym_class] = ACTIONS(1189), - [anon_sym_trait] = ACTIONS(1189), - [anon_sym_val] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_abstract] = ACTIONS(1189), - [anon_sym_final] = ACTIONS(1189), - [anon_sym_sealed] = ACTIONS(1189), - [anon_sym_implicit] = ACTIONS(1189), - [anon_sym_lazy] = ACTIONS(1189), - [anon_sym_override] = ACTIONS(1189), - [anon_sym_private] = ACTIONS(1189), - [anon_sym_protected] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [sym_operator_identifier] = ACTIONS(1537), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(1406), + [sym_extends_clause] = STATE(1407), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_extends] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_LF] = ACTIONS(2239), + [sym_comment] = ACTIONS(464), }, [1166] = { - [anon_sym_package] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_def] = ACTIONS(1159), - [anon_sym_abstract] = ACTIONS(1159), - [anon_sym_final] = ACTIONS(1159), - [anon_sym_sealed] = ACTIONS(1159), - [anon_sym_implicit] = ACTIONS(1159), - [anon_sym_lazy] = ACTIONS(1159), - [anon_sym_override] = ACTIONS(1159), - [anon_sym_private] = ACTIONS(1159), - [anon_sym_protected] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_LF] = ACTIONS(2241), + [sym_comment] = ACTIONS(464), }, [1167] = { - [aux_sym_parameter_types_repeat1] = STATE(1307), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2091), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_COLON] = ACTIONS(2243), + [anon_sym_EQ] = ACTIONS(2243), + [anon_sym_extends] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LF] = ACTIONS(2243), + [sym_comment] = ACTIONS(464), }, [1168] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(1463), - [anon_sym_import] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_case] = ACTIONS(1463), - [anon_sym_object] = ACTIONS(1463), - [anon_sym_class] = ACTIONS(1463), - [anon_sym_trait] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(1463), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_type] = ACTIONS(1463), - [anon_sym_def] = ACTIONS(1463), - [anon_sym_abstract] = ACTIONS(1463), - [anon_sym_final] = ACTIONS(1463), - [anon_sym_sealed] = ACTIONS(1463), - [anon_sym_implicit] = ACTIONS(1463), - [anon_sym_lazy] = ACTIONS(1463), - [anon_sym_override] = ACTIONS(1463), - [anon_sym_private] = ACTIONS(1463), - [anon_sym_protected] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [aux_sym_type_parameters_repeat1] = STATE(480), + [anon_sym_COMMA] = ACTIONS(446), + [anon_sym_RBRACK] = ACTIONS(2245), + [sym_comment] = ACTIONS(34), }, [1169] = { - [anon_sym_package] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_object] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_trait] = ACTIONS(1177), - [anon_sym_val] = ACTIONS(1177), - [anon_sym_EQ] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1177), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_def] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_final] = ACTIONS(1177), - [anon_sym_sealed] = ACTIONS(1177), - [anon_sym_implicit] = ACTIONS(1177), - [anon_sym_lazy] = ACTIONS(1177), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2247), + [sym_comment] = ACTIONS(34), }, [1170] = { - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_trait] = ACTIONS(1183), - [anon_sym_val] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_var] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_def] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_implicit] = ACTIONS(1183), - [anon_sym_lazy] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1410), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1171] = { - [anon_sym_package] = ACTIONS(1189), - [anon_sym_import] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_object] = ACTIONS(1189), - [anon_sym_class] = ACTIONS(1189), - [anon_sym_trait] = ACTIONS(1189), - [anon_sym_val] = ACTIONS(1189), - [anon_sym_EQ] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_def] = ACTIONS(1189), - [anon_sym_abstract] = ACTIONS(1189), - [anon_sym_final] = ACTIONS(1189), - [anon_sym_sealed] = ACTIONS(1189), - [anon_sym_implicit] = ACTIONS(1189), - [anon_sym_lazy] = ACTIONS(1189), - [anon_sym_override] = ACTIONS(1189), - [anon_sym_private] = ACTIONS(1189), - [anon_sym_protected] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1549), - [sym_operator_identifier] = ACTIONS(1549), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_with] = ACTIONS(851), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [1172] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(1308), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), + [sym__type] = STATE(1411), + [sym_compound_type] = STATE(890), + [sym_infix_type] = STATE(890), + [sym_stable_type_identifier] = STATE(891), + [sym_stable_identifier] = STATE(892), + [sym_generic_type] = STATE(890), + [sym_function_type] = STATE(890), + [sym_parameter_types] = STATE(893), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(34), }, [1173] = { - [sym_block] = STATE(897), - [anon_sym_package] = ACTIONS(1478), - [anon_sym_import] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_case] = ACTIONS(1478), - [anon_sym_object] = ACTIONS(1478), - [anon_sym_class] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_val] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_def] = ACTIONS(1478), - [anon_sym_abstract] = ACTIONS(1478), - [anon_sym_final] = ACTIONS(1478), - [anon_sym_sealed] = ACTIONS(1478), - [anon_sym_implicit] = ACTIONS(1478), - [anon_sym_lazy] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1478), - [anon_sym_private] = ACTIONS(1478), - [anon_sym_protected] = ACTIONS(1478), - [anon_sym_with] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1549), - [sym_operator_identifier] = ACTIONS(1549), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1412), + [sym_compound_type] = STATE(890), + [sym_infix_type] = STATE(890), + [sym_stable_type_identifier] = STATE(891), + [sym_stable_identifier] = STATE(892), + [sym_generic_type] = STATE(890), + [sym_function_type] = STATE(890), + [sym_parameter_types] = STATE(893), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1527), + [sym_comment] = ACTIONS(34), }, [1174] = { - [sym_template_body] = STATE(645), - [sym_extends_clause] = STATE(898), - [anon_sym_package] = ACTIONS(1104), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_object] = ACTIONS(1104), - [anon_sym_class] = ACTIONS(1104), - [anon_sym_trait] = ACTIONS(1104), - [anon_sym_val] = ACTIONS(1104), - [anon_sym_var] = ACTIONS(1104), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_def] = ACTIONS(1104), - [anon_sym_abstract] = ACTIONS(1104), - [anon_sym_final] = ACTIONS(1104), - [anon_sym_sealed] = ACTIONS(1104), - [anon_sym_implicit] = ACTIONS(1104), - [anon_sym_lazy] = ACTIONS(1104), - [anon_sym_override] = ACTIONS(1104), - [anon_sym_private] = ACTIONS(1104), - [anon_sym_protected] = ACTIONS(1104), - [anon_sym_extends] = ACTIONS(723), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_with] = ACTIONS(857), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_LF] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [1175] = { - [sym__type] = STATE(1310), - [sym_compound_type] = STATE(686), - [sym_infix_type] = STATE(686), - [sym_stable_type_identifier] = STATE(687), - [sym_stable_identifier] = STATE(688), - [sym_generic_type] = STATE(686), - [sym_function_type] = STATE(686), - [sym_parameter_types] = STATE(689), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1138), + [sym__type] = STATE(1413), + [sym_compound_type] = STATE(890), + [sym_infix_type] = STATE(890), + [sym_stable_type_identifier] = STATE(891), + [sym_stable_identifier] = STATE(892), + [sym_generic_type] = STATE(890), + [sym_function_type] = STATE(890), + [sym_parameter_types] = STATE(893), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1527), [sym_comment] = ACTIONS(34), }, [1176] = { - [anon_sym_COMMA] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_with] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_extends] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2249), + [sym_comment] = ACTIONS(464), }, [1177] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [aux_sym_class_parameters_repeat1] = STATE(508), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(2251), + [sym_comment] = ACTIONS(34), }, [1178] = { - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_with] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_LF] = ACTIONS(2253), + [sym_comment] = ACTIONS(464), }, [1179] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2255), [sym_comment] = ACTIONS(34), }, [1180] = { - [anon_sym_COMMA] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1416), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1181] = { - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_RPAREN] = ACTIONS(1815), - [anon_sym_match] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_COLON] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_with] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [1182] = { - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_else] = ACTIONS(482), - [anon_sym_match] = ACTIONS(482), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(213), + [sym__expression] = STATE(1417), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1183] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2099), + [sym__type] = STATE(1418), + [sym_compound_type] = STATE(900), + [sym_infix_type] = STATE(900), + [sym_stable_type_identifier] = STATE(901), + [sym_stable_identifier] = STATE(902), + [sym_generic_type] = STATE(900), + [sym_function_type] = STATE(900), + [sym_parameter_types] = STATE(903), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(34), }, [1184] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2099), + [sym__type] = STATE(1419), + [sym_compound_type] = STATE(900), + [sym_infix_type] = STATE(900), + [sym_stable_type_identifier] = STATE(901), + [sym_stable_identifier] = STATE(902), + [sym_generic_type] = STATE(900), + [sym_function_type] = STATE(900), + [sym_parameter_types] = STATE(903), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(34), }, [1185] = { - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_RPAREN] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(857), + [anon_sym_with] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(857), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_LF] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [1186] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym__type] = STATE(1420), + [sym_compound_type] = STATE(900), + [sym_infix_type] = STATE(900), + [sym_stable_type_identifier] = STATE(901), + [sym_stable_identifier] = STATE(902), + [sym_generic_type] = STATE(900), + [sym_function_type] = STATE(900), + [sym_parameter_types] = STATE(903), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1533), [sym_comment] = ACTIONS(34), }, [1187] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(2105), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_with] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [sym_operator_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_LF] = ACTIONS(2257), + [sym_comment] = ACTIONS(464), }, [1188] = { - [anon_sym_DOT] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(213), + [sym__expression] = STATE(1421), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1189] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2107), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_with] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [sym_operator_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_LF] = ACTIONS(2259), + [sym_comment] = ACTIONS(464), }, [1190] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_match] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1622), - [sym_operator_identifier] = ACTIONS(1622), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2261), + [sym_comment] = ACTIONS(34), }, [1191] = { - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1423), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1192] = { - [aux_sym_parameter_types_repeat1] = STATE(1318), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_with] = ACTIONS(851), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [1193] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1622), - [sym_operator_identifier] = ACTIONS(1622), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1424), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), + [sym_comment] = ACTIONS(34), }, [1194] = { - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_COMMA] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1425), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), + [sym_comment] = ACTIONS(34), }, [1195] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1320), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_with] = ACTIONS(857), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_LF] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [1196] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1426), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), + [sym_comment] = ACTIONS(34), }, [1197] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1322), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [sym_operator_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_LF] = ACTIONS(2263), + [sym_comment] = ACTIONS(464), }, [1198] = { - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_COMMA] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_LF] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), }, [1199] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1200] = { - [anon_sym_DOT] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_LF] = ACTIONS(2269), + [sym_comment] = ACTIONS(464), }, [1201] = { - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_COMMA] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_match] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2271), + [sym_comment] = ACTIONS(34), }, [1202] = { - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1430), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1203] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(1323), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_with] = ACTIONS(851), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [1204] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(1324), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), + [sym_block] = STATE(213), + [sym__expression] = STATE(1431), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1205] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1325), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(892), - [anon_sym_new] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym__type] = STATE(1432), + [sym_compound_type] = STATE(923), + [sym_infix_type] = STATE(923), + [sym_stable_type_identifier] = STATE(924), + [sym_stable_identifier] = STATE(925), + [sym_generic_type] = STATE(923), + [sym_function_type] = STATE(923), + [sym_parameter_types] = STATE(926), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1545), [sym_comment] = ACTIONS(34), }, [1206] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(1199), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), + [sym__type] = STATE(1433), + [sym_compound_type] = STATE(923), + [sym_infix_type] = STATE(923), + [sym_stable_type_identifier] = STATE(924), + [sym_stable_identifier] = STATE(925), + [sym_generic_type] = STATE(923), + [sym_function_type] = STATE(923), + [sym_parameter_types] = STATE(926), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1545), [sym_comment] = ACTIONS(34), }, [1207] = { - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_package] = ACTIONS(827), - [anon_sym_import] = ACTIONS(827), - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_case] = ACTIONS(827), - [anon_sym_object] = ACTIONS(827), - [anon_sym_class] = ACTIONS(827), - [anon_sym_trait] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_val] = ACTIONS(827), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_type] = ACTIONS(827), - [anon_sym_def] = ACTIONS(827), - [anon_sym_abstract] = ACTIONS(827), - [anon_sym_final] = ACTIONS(827), - [anon_sym_sealed] = ACTIONS(827), - [anon_sym_implicit] = ACTIONS(827), - [anon_sym_lazy] = ACTIONS(827), - [anon_sym_override] = ACTIONS(827), - [anon_sym_private] = ACTIONS(827), - [anon_sym_protected] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_else] = ACTIONS(827), - [anon_sym_match] = ACTIONS(827), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_LF] = ACTIONS(2273), + [sym_comment] = ACTIONS(464), }, [1208] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_package] = ACTIONS(1592), - [anon_sym_import] = ACTIONS(1592), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1592), - [anon_sym_object] = ACTIONS(1592), - [anon_sym_class] = ACTIONS(1592), - [anon_sym_trait] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_val] = ACTIONS(1592), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_def] = ACTIONS(1592), - [anon_sym_abstract] = ACTIONS(1592), - [anon_sym_final] = ACTIONS(1592), - [anon_sym_sealed] = ACTIONS(1592), - [anon_sym_implicit] = ACTIONS(1592), - [anon_sym_lazy] = ACTIONS(1592), - [anon_sym_override] = ACTIONS(1592), - [anon_sym_private] = ACTIONS(1592), - [anon_sym_protected] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1592), - [anon_sym_match] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(857), + [anon_sym_with] = ACTIONS(857), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_LF] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [1209] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym__type] = STATE(1434), + [sym_compound_type] = STATE(923), + [sym_infix_type] = STATE(923), + [sym_stable_type_identifier] = STATE(924), + [sym_stable_identifier] = STATE(925), + [sym_generic_type] = STATE(923), + [sym_function_type] = STATE(923), + [sym_parameter_types] = STATE(926), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1545), [sym_comment] = ACTIONS(34), }, [1210] = { - [ts_builtin_sym_end] = ACTIONS(1632), - [anon_sym_package] = ACTIONS(1634), - [anon_sym_import] = ACTIONS(1634), - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_object] = ACTIONS(1634), - [anon_sym_class] = ACTIONS(1634), - [anon_sym_trait] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_val] = ACTIONS(1634), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_var] = ACTIONS(1634), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_def] = ACTIONS(1634), - [anon_sym_abstract] = ACTIONS(1634), - [anon_sym_final] = ACTIONS(1634), - [anon_sym_sealed] = ACTIONS(1634), - [anon_sym_implicit] = ACTIONS(1634), - [anon_sym_lazy] = ACTIONS(1634), - [anon_sym_override] = ACTIONS(1634), - [anon_sym_private] = ACTIONS(1634), - [anon_sym_protected] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_else] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_COLON] = ACTIONS(2275), + [anon_sym_EQ] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_LF] = ACTIONS(2275), + [sym_comment] = ACTIONS(464), }, [1211] = { - [sym_block] = STATE(533), - [sym__expression] = STATE(1327), - [sym_if_expression] = STATE(533), - [sym_match_expression] = STATE(533), - [sym_assignment_expression] = STATE(533), - [sym_generic_function] = STATE(533), - [sym_call_expression] = STATE(533), - [sym_field_expression] = STATE(533), - [sym_instance_expression] = STATE(533), - [sym_infix_expression] = STATE(533), - [sym_prefix_expression] = STATE(533), - [sym_tuple_expression] = STATE(533), - [sym_parenthesized_expression] = STATE(533), - [sym_string_transform_expression] = STATE(533), - [sym_string] = STATE(533), - [sym__simple_string] = ACTIONS(898), - [sym__string_start] = ACTIONS(900), - [sym__multiline_string_start] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_if] = ACTIONS(908), - [anon_sym_new] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [sym_identifier] = ACTIONS(914), - [sym_number] = ACTIONS(916), + [aux_sym_parameters_repeat1] = STATE(687), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_RPAREN] = ACTIONS(2277), [sym_comment] = ACTIONS(34), }, [1212] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_else] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1437), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_EQ] = ACTIONS(2281), + [anon_sym_with] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [sym_operator_identifier] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_LF] = ACTIONS(2279), + [sym_comment] = ACTIONS(464), }, [1213] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2119), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_LF] = ACTIONS(2273), + [sym_comment] = ACTIONS(464), }, [1214] = { - [ts_builtin_sym_end] = ACTIONS(1663), - [anon_sym_package] = ACTIONS(1665), - [anon_sym_import] = ACTIONS(1665), - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1665), - [anon_sym_object] = ACTIONS(1665), - [anon_sym_class] = ACTIONS(1665), - [anon_sym_trait] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_val] = ACTIONS(1665), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_var] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_def] = ACTIONS(1665), - [anon_sym_abstract] = ACTIONS(1665), - [anon_sym_final] = ACTIONS(1665), - [anon_sym_sealed] = ACTIONS(1665), - [anon_sym_implicit] = ACTIONS(1665), - [anon_sym_lazy] = ACTIONS(1665), - [anon_sym_override] = ACTIONS(1665), - [anon_sym_private] = ACTIONS(1665), - [anon_sym_protected] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1438), + [sym_compound_type] = STATE(923), + [sym_infix_type] = STATE(923), + [sym_stable_type_identifier] = STATE(924), + [sym_stable_identifier] = STATE(925), + [sym_generic_type] = STATE(923), + [sym_function_type] = STATE(923), + [sym_parameter_types] = STATE(926), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1545), + [sym_comment] = ACTIONS(34), }, [1215] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2121), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_match] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LF] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), }, [1216] = { - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_package] = ACTIONS(1673), - [anon_sym_import] = ACTIONS(1673), - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_object] = ACTIONS(1673), - [anon_sym_class] = ACTIONS(1673), - [anon_sym_trait] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_val] = ACTIONS(1673), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_var] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_def] = ACTIONS(1673), - [anon_sym_abstract] = ACTIONS(1673), - [anon_sym_final] = ACTIONS(1673), - [anon_sym_sealed] = ACTIONS(1673), - [anon_sym_implicit] = ACTIONS(1673), - [anon_sym_lazy] = ACTIONS(1673), - [anon_sym_override] = ACTIONS(1673), - [anon_sym_private] = ACTIONS(1673), - [anon_sym_protected] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2283), + [sym_comment] = ACTIONS(34), }, [1217] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_case] = ACTIONS(1338), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2283), [sym_comment] = ACTIONS(34), }, [1218] = { - [sym_block] = STATE(1340), - [sym__expression] = STATE(1341), - [sym_if_expression] = STATE(1340), - [sym_match_expression] = STATE(1340), - [sym_assignment_expression] = STATE(1340), - [sym_generic_function] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_field_expression] = STATE(1340), - [sym_instance_expression] = STATE(1340), - [sym_infix_expression] = STATE(1340), - [sym_prefix_expression] = STATE(1340), - [sym_tuple_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_string_transform_expression] = STATE(1340), - [sym_string] = STATE(1340), - [sym__simple_string] = ACTIONS(2125), - [sym__string_start] = ACTIONS(2127), - [sym__multiline_string_start] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [sym_number] = ACTIONS(2143), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_match] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_LF] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), }, [1219] = { - [sym__type] = STATE(1343), - [sym_compound_type] = STATE(1344), - [sym_infix_type] = STATE(1344), - [sym_stable_type_identifier] = STATE(1345), - [sym_stable_identifier] = STATE(1346), - [sym_generic_type] = STATE(1344), - [sym_function_type] = STATE(1344), - [sym_parameter_types] = STATE(1347), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(2145), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1220] = { - [sym_block] = STATE(1357), - [sym__expression] = STATE(1358), - [sym_if_expression] = STATE(1357), - [sym_match_expression] = STATE(1357), - [sym_assignment_expression] = STATE(1357), - [sym_generic_function] = STATE(1357), - [sym_call_expression] = STATE(1357), - [sym_field_expression] = STATE(1357), - [sym_instance_expression] = STATE(1357), - [sym_infix_expression] = STATE(1357), - [sym_prefix_expression] = STATE(1357), - [sym_tuple_expression] = STATE(1357), - [sym_parenthesized_expression] = STATE(1357), - [sym_string_transform_expression] = STATE(1357), - [sym_string] = STATE(1357), - [sym__simple_string] = ACTIONS(2147), - [sym__string_start] = ACTIONS(2149), - [sym__multiline_string_start] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [sym_number] = ACTIONS(2165), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_LF] = ACTIONS(2289), + [sym_comment] = ACTIONS(464), }, [1221] = { - [anon_sym_EQ_GT] = ACTIONS(2167), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_match] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_LF] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), }, [1222] = { - [anon_sym_RBRACE] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_LF] = ACTIONS(2169), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_else] = ACTIONS(1417), + [anon_sym_match] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_LF] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), }, [1223] = { - [aux_sym_import_selectors_repeat1] = STATE(644), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(2171), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2291), [sym_comment] = ACTIONS(34), }, [1224] = { - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(953), + [sym_arguments] = STATE(954), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(1573), + [sym_identifier] = ACTIONS(1575), + [sym_operator_identifier] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_LF] = ACTIONS(1563), + [sym_comment] = ACTIONS(464), }, [1225] = { - [sym_template_body] = STATE(1361), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_else] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_LF] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), }, [1226] = { - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_COLON] = ACTIONS(2175), - [anon_sym_EQ] = ACTIONS(2175), - [anon_sym_extends] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2175), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1445), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2295), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1227] = { - [anon_sym_DOT] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_with] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_LF] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(953), + [sym_arguments] = STATE(954), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1604), + [anon_sym_match] = ACTIONS(1604), + [sym_identifier] = ACTIONS(1575), + [sym_operator_identifier] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_LF] = ACTIONS(1604), + [sym_comment] = ACTIONS(464), }, [1228] = { - [aux_sym_parameter_types_repeat1] = STATE(1363), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2177), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_EQ] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_else] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_LF] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), }, [1229] = { - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1179), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_LF] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1447), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1230] = { - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_with] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LF] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_LF] = ACTIONS(2299), + [sym_comment] = ACTIONS(464), }, [1231] = { - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_with] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [sym_operator_identifier] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2179), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [1232] = { - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_extends] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_LF] = ACTIONS(2181), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_else] = ACTIONS(1477), + [anon_sym_match] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_LF] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), }, [1233] = { - [anon_sym_DOT] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_COLON] = ACTIONS(1161), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_with] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_LF] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(953), + [sym_arguments] = STATE(954), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_LF] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), }, [1234] = { - [aux_sym_parameter_types_repeat1] = STATE(1365), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_else] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_LF] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), }, [1235] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(1406), + [sym_extends_clause] = STATE(1407), + [sym_class_parameters] = STATE(1449), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_extends] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_LF] = ACTIONS(2239), + [sym_comment] = ACTIONS(464), }, [1236] = { - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_COLON] = ACTIONS(1179), - [anon_sym_EQ] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_LF] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_COLON] = ACTIONS(1944), + [anon_sym_EQ] = ACTIONS(2303), + [anon_sym_with] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1950), + [sym_operator_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_LF] = ACTIONS(2257), + [sym_comment] = ACTIONS(464), }, [1237] = { - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_COLON] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_with] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LF] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym_LF] = ACTIONS(2305), + [sym_comment] = ACTIONS(464), }, [1238] = { - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_COLON] = ACTIONS(2179), - [anon_sym_EQ] = ACTIONS(2179), - [anon_sym_with] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(2179), - [sym_identifier] = ACTIONS(1741), - [sym_operator_identifier] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2179), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1451), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), + [sym_comment] = ACTIONS(34), }, [1239] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_LF] = ACTIONS(2187), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(2307), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [1240] = { - [anon_sym_DOT] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_with] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_LF] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_COLON] = ACTIONS(1944), + [anon_sym_EQ] = ACTIONS(2309), + [anon_sym_with] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1950), + [sym_operator_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_LF] = ACTIONS(2259), + [sym_comment] = ACTIONS(464), }, [1241] = { - [aux_sym_parameter_types_repeat1] = STATE(1367), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_LF] = ACTIONS(2311), + [sym_comment] = ACTIONS(464), }, [1242] = { - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1179), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_LF] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1453), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), + [sym_comment] = ACTIONS(34), }, [1243] = { - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_with] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LF] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(2313), + [anon_sym_with] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(544), + [sym_identifier] = ACTIONS(623), + [sym_operator_identifier] = ACTIONS(623), + [sym_comment] = ACTIONS(464), }, [1244] = { - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_with] = ACTIONS(1765), - [sym_identifier] = ACTIONS(1767), - [sym_operator_identifier] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2179), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_with] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [sym_operator_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_LF] = ACTIONS(2315), + [sym_comment] = ACTIONS(464), }, [1245] = { - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_LF] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1454), + [sym_compound_type] = STATE(913), + [sym_infix_type] = STATE(913), + [sym_stable_type_identifier] = STATE(914), + [sym_stable_identifier] = STATE(915), + [sym_generic_type] = STATE(913), + [sym_function_type] = STATE(913), + [sym_parameter_types] = STATE(916), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1539), + [sym_comment] = ACTIONS(34), }, [1246] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(1437), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_COLON] = ACTIONS(2317), + [anon_sym_EQ] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_LF] = ACTIONS(2279), + [sym_comment] = ACTIONS(464), }, [1247] = { - [anon_sym_DOT] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_with] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_LF] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_EQ] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_LF] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1248] = { - [aux_sym_parameter_types_repeat1] = STATE(1370), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_EQ] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_LF] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), }, [1249] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_LF] = ACTIONS(2195), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1250] = { - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_EQ] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1179), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_LF] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1251] = { - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_with] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LF] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(2321), + [anon_sym_package] = ACTIONS(2323), + [anon_sym_import] = ACTIONS(2323), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(2323), + [anon_sym_object] = ACTIONS(2323), + [anon_sym_class] = ACTIONS(2323), + [anon_sym_trait] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(2323), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2323), + [anon_sym_def] = ACTIONS(2323), + [anon_sym_abstract] = ACTIONS(2323), + [anon_sym_final] = ACTIONS(2323), + [anon_sym_sealed] = ACTIONS(2323), + [anon_sym_implicit] = ACTIONS(2323), + [anon_sym_lazy] = ACTIONS(2323), + [anon_sym_override] = ACTIONS(2323), + [anon_sym_private] = ACTIONS(2323), + [anon_sym_protected] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [1252] = { - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_EQ] = ACTIONS(2179), - [anon_sym_with] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [sym_operator_identifier] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2179), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(2325), + [anon_sym_package] = ACTIONS(2325), + [anon_sym_import] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_case] = ACTIONS(2325), + [anon_sym_object] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_val] = ACTIONS(2325), + [anon_sym_var] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_def] = ACTIONS(2325), + [anon_sym_abstract] = ACTIONS(2325), + [anon_sym_final] = ACTIONS(2325), + [anon_sym_sealed] = ACTIONS(2325), + [anon_sym_implicit] = ACTIONS(2325), + [anon_sym_lazy] = ACTIONS(2325), + [anon_sym_override] = ACTIONS(2325), + [anon_sym_private] = ACTIONS(2325), + [anon_sym_protected] = ACTIONS(2325), + [sym_comment] = ACTIONS(34), }, [1253] = { - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_COLON] = ACTIONS(2197), - [anon_sym_EQ] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_LF] = ACTIONS(2197), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(164), + [sym__expression] = STATE(1456), + [sym_if_expression] = STATE(164), + [sym_match_expression] = STATE(164), + [sym_case_block] = STATE(164), + [sym_assignment_expression] = STATE(164), + [sym_generic_function] = STATE(164), + [sym_call_expression] = STATE(164), + [sym_field_expression] = STATE(164), + [sym_instance_expression] = STATE(164), + [sym_infix_expression] = STATE(164), + [sym_prefix_expression] = STATE(164), + [sym_tuple_expression] = STATE(164), + [sym_parenthesized_expression] = STATE(164), + [sym_string_transform_expression] = STATE(164), + [sym_string] = STATE(164), + [sym__simple_string] = ACTIONS(284), + [sym__string_start] = ACTIONS(286), + [sym__multiline_string_start] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_new] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(298), + [sym_identifier] = ACTIONS(300), + [sym_number] = ACTIONS(302), + [sym_comment] = ACTIONS(34), }, [1254] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(1371), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [ts_builtin_sym_end] = ACTIONS(2321), + [anon_sym_package] = ACTIONS(2321), + [anon_sym_import] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_object] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_val] = ACTIONS(2321), + [anon_sym_var] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_def] = ACTIONS(2321), + [anon_sym_abstract] = ACTIONS(2321), + [anon_sym_final] = ACTIONS(2321), + [anon_sym_sealed] = ACTIONS(2321), + [anon_sym_implicit] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2321), + [anon_sym_override] = ACTIONS(2321), + [anon_sym_private] = ACTIONS(2321), + [anon_sym_protected] = ACTIONS(2321), [sym_comment] = ACTIONS(34), }, [1255] = { - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_LF] = ACTIONS(2195), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [anon_sym_class] = ACTIONS(1273), + [anon_sym_trait] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_val] = ACTIONS(1273), + [anon_sym_var] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1273), + [anon_sym_abstract] = ACTIONS(1273), + [anon_sym_final] = ACTIONS(1273), + [anon_sym_sealed] = ACTIONS(1273), + [anon_sym_implicit] = ACTIONS(1273), + [anon_sym_lazy] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_with] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [1256] = { - [sym_block] = STATE(1373), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_EQ] = ACTIONS(2201), - [anon_sym_with] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [sym_operator_identifier] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_LF] = ACTIONS(2199), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1458), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1257] = { - [anon_sym_DOT] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1590), - [anon_sym_EQ] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_else] = ACTIONS(1590), - [anon_sym_match] = ACTIONS(1590), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_LF] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_object] = ACTIONS(1291), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_val] = ACTIONS(1291), + [anon_sym_var] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(1291), + [anon_sym_final] = ACTIONS(1291), + [anon_sym_sealed] = ACTIONS(1291), + [anon_sym_implicit] = ACTIONS(1291), + [anon_sym_lazy] = ACTIONS(1291), + [anon_sym_override] = ACTIONS(1291), + [anon_sym_private] = ACTIONS(1291), + [anon_sym_protected] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [1258] = { - [anon_sym_DOT] = ACTIONS(1594), - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_EQ] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_else] = ACTIONS(1594), - [anon_sym_match] = ACTIONS(1594), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_LF] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_object] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(1297), + [anon_sym_trait] = ACTIONS(1297), + [anon_sym_val] = ACTIONS(1297), + [anon_sym_var] = ACTIONS(1297), + [anon_sym_type] = ACTIONS(1297), + [anon_sym_def] = ACTIONS(1297), + [anon_sym_abstract] = ACTIONS(1297), + [anon_sym_final] = ACTIONS(1297), + [anon_sym_sealed] = ACTIONS(1297), + [anon_sym_implicit] = ACTIONS(1297), + [anon_sym_lazy] = ACTIONS(1297), + [anon_sym_override] = ACTIONS(1297), + [anon_sym_private] = ACTIONS(1297), + [anon_sym_protected] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [1259] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_object] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_val] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_sealed] = ACTIONS(1303), + [anon_sym_implicit] = ACTIONS(1303), + [anon_sym_lazy] = ACTIONS(1303), + [anon_sym_override] = ACTIONS(1303), + [anon_sym_private] = ACTIONS(1303), + [anon_sym_protected] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(1660), + [sym_identifier] = ACTIONS(1662), + [sym_operator_identifier] = ACTIONS(1662), + [sym_comment] = ACTIONS(464), }, [1260] = { - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_EQ] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_else] = ACTIONS(1636), - [anon_sym_match] = ACTIONS(1636), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LF] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [anon_sym_class] = ACTIONS(1273), + [anon_sym_trait] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_val] = ACTIONS(1273), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_var] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1273), + [anon_sym_abstract] = ACTIONS(1273), + [anon_sym_final] = ACTIONS(1273), + [anon_sym_sealed] = ACTIONS(1273), + [anon_sym_implicit] = ACTIONS(1273), + [anon_sym_lazy] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_with] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [1261] = { - [sym_block] = STATE(607), - [sym__expression] = STATE(1375), - [sym_if_expression] = STATE(607), - [sym_match_expression] = STATE(607), - [sym_assignment_expression] = STATE(607), - [sym_generic_function] = STATE(607), - [sym_call_expression] = STATE(607), - [sym_field_expression] = STATE(607), - [sym_instance_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_tuple_expression] = STATE(607), - [sym_parenthesized_expression] = STATE(607), - [sym_string_transform_expression] = STATE(607), - [sym_string] = STATE(607), - [sym__simple_string] = ACTIONS(1038), - [sym__string_start] = ACTIONS(1040), - [sym__multiline_string_start] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1054), - [sym_number] = ACTIONS(1056), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(1460), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2329), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1262] = { - [anon_sym_DOT] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_EQ] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_else] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_LF] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(1346), + [anon_sym_import] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_object] = ACTIONS(1346), + [anon_sym_class] = ACTIONS(1346), + [anon_sym_trait] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(1346), + [anon_sym_def] = ACTIONS(1346), + [anon_sym_abstract] = ACTIONS(1346), + [anon_sym_final] = ACTIONS(1346), + [anon_sym_sealed] = ACTIONS(1346), + [anon_sym_implicit] = ACTIONS(1346), + [anon_sym_lazy] = ACTIONS(1346), + [anon_sym_override] = ACTIONS(1346), + [anon_sym_private] = ACTIONS(1346), + [anon_sym_protected] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1263] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2205), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_object] = ACTIONS(1291), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_val] = ACTIONS(1291), + [anon_sym_COLON] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_var] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(1291), + [anon_sym_final] = ACTIONS(1291), + [anon_sym_sealed] = ACTIONS(1291), + [anon_sym_implicit] = ACTIONS(1291), + [anon_sym_lazy] = ACTIONS(1291), + [anon_sym_override] = ACTIONS(1291), + [anon_sym_private] = ACTIONS(1291), + [anon_sym_protected] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [1264] = { - [anon_sym_DOT] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_LF] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_object] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(1297), + [anon_sym_trait] = ACTIONS(1297), + [anon_sym_val] = ACTIONS(1297), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1297), + [anon_sym_var] = ACTIONS(1297), + [anon_sym_type] = ACTIONS(1297), + [anon_sym_def] = ACTIONS(1297), + [anon_sym_abstract] = ACTIONS(1297), + [anon_sym_final] = ACTIONS(1297), + [anon_sym_sealed] = ACTIONS(1297), + [anon_sym_implicit] = ACTIONS(1297), + [anon_sym_lazy] = ACTIONS(1297), + [anon_sym_override] = ACTIONS(1297), + [anon_sym_private] = ACTIONS(1297), + [anon_sym_protected] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [1265] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2207), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_object] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_val] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_sealed] = ACTIONS(1303), + [anon_sym_implicit] = ACTIONS(1303), + [anon_sym_lazy] = ACTIONS(1303), + [anon_sym_override] = ACTIONS(1303), + [anon_sym_private] = ACTIONS(1303), + [anon_sym_protected] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1303), + [sym_identifier] = ACTIONS(1674), + [sym_operator_identifier] = ACTIONS(1674), + [sym_comment] = ACTIONS(464), }, [1266] = { - [anon_sym_DOT] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_EQ] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_LF] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(514), + [anon_sym_import] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_case] = ACTIONS(514), + [anon_sym_object] = ACTIONS(514), + [anon_sym_class] = ACTIONS(514), + [anon_sym_trait] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_val] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_var] = ACTIONS(514), + [anon_sym_type] = ACTIONS(514), + [anon_sym_def] = ACTIONS(514), + [anon_sym_abstract] = ACTIONS(514), + [anon_sym_final] = ACTIONS(514), + [anon_sym_sealed] = ACTIONS(514), + [anon_sym_implicit] = ACTIONS(514), + [anon_sym_lazy] = ACTIONS(514), + [anon_sym_override] = ACTIONS(514), + [anon_sym_private] = ACTIONS(514), + [anon_sym_protected] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_match] = ACTIONS(514), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), }, [1267] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_case] = ACTIONS(1338), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2331), [sym_comment] = ACTIONS(34), }, [1268] = { - [sym_template_body] = STATE(1361), - [sym_extends_clause] = STATE(1379), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_extends] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_LF] = ACTIONS(2173), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2331), + [sym_comment] = ACTIONS(34), }, [1269] = { - [sym__type] = STATE(1380), - [sym_compound_type] = STATE(851), - [sym_infix_type] = STATE(851), - [sym_stable_type_identifier] = STATE(852), - [sym_stable_identifier] = STATE(853), - [sym_generic_type] = STATE(851), - [sym_function_type] = STATE(851), - [sym_parameter_types] = STATE(854), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), + [anon_sym_class] = ACTIONS(1358), + [anon_sym_trait] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_val] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_var] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_def] = ACTIONS(1358), + [anon_sym_abstract] = ACTIONS(1358), + [anon_sym_final] = ACTIONS(1358), + [anon_sym_sealed] = ACTIONS(1358), + [anon_sym_implicit] = ACTIONS(1358), + [anon_sym_lazy] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), }, [1270] = { - [sym_type_arguments] = STATE(331), - [sym_arguments] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(2211), - [anon_sym_package] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_val] = ACTIONS(2213), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_def] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_final] = ACTIONS(2213), - [anon_sym_sealed] = ACTIONS(2213), - [anon_sym_implicit] = ACTIONS(2213), - [anon_sym_lazy] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_match] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_operator_identifier] = ACTIONS(568), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1271] = { - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_LF] = ACTIONS(2337), + [sym_comment] = ACTIONS(464), }, [1272] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2215), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1370), + [anon_sym_import] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_object] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(1370), + [anon_sym_trait] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_val] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_def] = ACTIONS(1370), + [anon_sym_abstract] = ACTIONS(1370), + [anon_sym_final] = ACTIONS(1370), + [anon_sym_sealed] = ACTIONS(1370), + [anon_sym_implicit] = ACTIONS(1370), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_override] = ACTIONS(1370), + [anon_sym_private] = ACTIONS(1370), + [anon_sym_protected] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), }, [1273] = { - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_COLON] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1415), + [anon_sym_import] = ACTIONS(1415), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_object] = ACTIONS(1415), + [anon_sym_class] = ACTIONS(1415), + [anon_sym_trait] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_val] = ACTIONS(1415), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1415), + [anon_sym_def] = ACTIONS(1415), + [anon_sym_abstract] = ACTIONS(1415), + [anon_sym_final] = ACTIONS(1415), + [anon_sym_sealed] = ACTIONS(1415), + [anon_sym_implicit] = ACTIONS(1415), + [anon_sym_lazy] = ACTIONS(1415), + [anon_sym_override] = ACTIONS(1415), + [anon_sym_private] = ACTIONS(1415), + [anon_sym_protected] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), }, [1274] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2217), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2339), [sym_comment] = ACTIONS(34), }, [1275] = { - [anon_sym_package] = ACTIONS(827), - [anon_sym_import] = ACTIONS(827), - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_case] = ACTIONS(827), - [anon_sym_object] = ACTIONS(827), - [anon_sym_class] = ACTIONS(827), - [anon_sym_trait] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_val] = ACTIONS(827), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_type] = ACTIONS(827), - [anon_sym_def] = ACTIONS(827), - [anon_sym_abstract] = ACTIONS(827), - [anon_sym_final] = ACTIONS(827), - [anon_sym_sealed] = ACTIONS(827), - [anon_sym_implicit] = ACTIONS(827), - [anon_sym_lazy] = ACTIONS(827), - [anon_sym_override] = ACTIONS(827), - [anon_sym_private] = ACTIONS(827), - [anon_sym_protected] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_match] = ACTIONS(827), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(116), + [anon_sym_import] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_RBRACE] = ACTIONS(116), + [anon_sym_case] = ACTIONS(116), + [anon_sym_object] = ACTIONS(116), + [anon_sym_class] = ACTIONS(116), + [anon_sym_trait] = ACTIONS(116), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_val] = ACTIONS(116), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_var] = ACTIONS(116), + [anon_sym_type] = ACTIONS(116), + [anon_sym_def] = ACTIONS(116), + [anon_sym_abstract] = ACTIONS(116), + [anon_sym_final] = ACTIONS(116), + [anon_sym_sealed] = ACTIONS(116), + [anon_sym_implicit] = ACTIONS(116), + [anon_sym_lazy] = ACTIONS(116), + [anon_sym_override] = ACTIONS(116), + [anon_sym_private] = ACTIONS(116), + [anon_sym_protected] = ACTIONS(116), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_else] = ACTIONS(116), + [anon_sym_match] = ACTIONS(116), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [1276] = { - [anon_sym_package] = ACTIONS(1592), - [anon_sym_import] = ACTIONS(1592), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_case] = ACTIONS(1592), - [anon_sym_object] = ACTIONS(1592), - [anon_sym_class] = ACTIONS(1592), - [anon_sym_trait] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_val] = ACTIONS(1592), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_def] = ACTIONS(1592), - [anon_sym_abstract] = ACTIONS(1592), - [anon_sym_final] = ACTIONS(1592), - [anon_sym_sealed] = ACTIONS(1592), - [anon_sym_implicit] = ACTIONS(1592), - [anon_sym_lazy] = ACTIONS(1592), - [anon_sym_override] = ACTIONS(1592), - [anon_sym_private] = ACTIONS(1592), - [anon_sym_protected] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1465), + [anon_sym_DOLLAR] = ACTIONS(118), + [sym_comment] = ACTIONS(34), }, [1277] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_interpolation] = STATE(1466), + [anon_sym_DOLLAR] = ACTIONS(120), [sym_comment] = ACTIONS(34), }, [1278] = { - [anon_sym_package] = ACTIONS(1634), - [anon_sym_import] = ACTIONS(1634), - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_object] = ACTIONS(1634), - [anon_sym_class] = ACTIONS(1634), - [anon_sym_trait] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_val] = ACTIONS(1634), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_var] = ACTIONS(1634), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_def] = ACTIONS(1634), - [anon_sym_abstract] = ACTIONS(1634), - [anon_sym_final] = ACTIONS(1634), - [anon_sym_sealed] = ACTIONS(1634), - [anon_sym_implicit] = ACTIONS(1634), - [anon_sym_lazy] = ACTIONS(1634), - [anon_sym_override] = ACTIONS(1634), - [anon_sym_private] = ACTIONS(1634), - [anon_sym_protected] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(1468), + [sym_import_declaration] = STATE(1468), + [sym_object_definition] = STATE(1468), + [sym_class_definition] = STATE(1468), + [sym_trait_definition] = STATE(1468), + [sym_val_definition] = STATE(1468), + [sym_val_declaration] = STATE(1468), + [sym_var_declaration] = STATE(1468), + [sym_var_definition] = STATE(1468), + [sym_type_definition] = STATE(1468), + [sym_function_definition] = STATE(1468), + [sym_function_declaration] = STATE(1468), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(1469), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(1470), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1279] = { - [aux_sym_string_repeat1] = STATE(1385), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2221), + [sym_block] = STATE(340), + [sym__expression] = STATE(1471), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [1280] = { - [aux_sym_string_repeat2] = STATE(1386), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2221), + [sym_parenthesized_expression] = STATE(1472), + [anon_sym_LPAREN] = ACTIONS(580), [sym_comment] = ACTIONS(34), }, [1281] = { - [anon_sym_package] = ACTIONS(866), - [anon_sym_import] = ACTIONS(866), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(866), - [anon_sym_case] = ACTIONS(866), - [anon_sym_object] = ACTIONS(866), - [anon_sym_class] = ACTIONS(866), - [anon_sym_trait] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_val] = ACTIONS(866), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_var] = ACTIONS(866), - [anon_sym_type] = ACTIONS(866), - [anon_sym_def] = ACTIONS(866), - [anon_sym_abstract] = ACTIONS(866), - [anon_sym_final] = ACTIONS(866), - [anon_sym_sealed] = ACTIONS(866), - [anon_sym_implicit] = ACTIONS(866), - [anon_sym_lazy] = ACTIONS(866), - [anon_sym_override] = ACTIONS(866), - [anon_sym_private] = ACTIONS(866), - [anon_sym_protected] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_else] = ACTIONS(866), - [anon_sym_match] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1284), + [sym__expression] = STATE(1473), + [sym_if_expression] = STATE(1284), + [sym_match_expression] = STATE(1284), + [sym_case_block] = STATE(1284), + [sym_assignment_expression] = STATE(1284), + [sym_generic_function] = STATE(1284), + [sym_call_expression] = STATE(1284), + [sym_field_expression] = STATE(1284), + [sym_instance_expression] = STATE(1284), + [sym_infix_expression] = STATE(1284), + [sym_prefix_expression] = STATE(1284), + [sym_tuple_expression] = STATE(1284), + [sym_parenthesized_expression] = STATE(1284), + [sym_string_transform_expression] = STATE(1284), + [sym_string] = STATE(1284), + [sym__simple_string] = ACTIONS(2074), + [sym__string_start] = ACTIONS(2076), + [sym__multiline_string_start] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_new] = ACTIONS(2086), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [sym_number] = ACTIONS(2092), + [sym_comment] = ACTIONS(34), }, [1282] = { - [aux_sym_block_repeat1] = STATE(1389), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1284), + [sym__expression] = STATE(1474), + [sym_if_expression] = STATE(1284), + [sym_match_expression] = STATE(1284), + [sym_case_block] = STATE(1284), + [sym_assignment_expression] = STATE(1284), + [sym_generic_function] = STATE(1284), + [sym_call_expression] = STATE(1284), + [sym_field_expression] = STATE(1284), + [sym_instance_expression] = STATE(1284), + [sym_infix_expression] = STATE(1284), + [sym_prefix_expression] = STATE(1284), + [sym_tuple_expression] = STATE(1284), + [sym_parenthesized_expression] = STATE(1284), + [sym_string_transform_expression] = STATE(1284), + [sym_string] = STATE(1284), + [sym__simple_string] = ACTIONS(2074), + [sym__string_start] = ACTIONS(2076), + [sym__multiline_string_start] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_new] = ACTIONS(2086), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [sym_number] = ACTIONS(2092), + [sym_comment] = ACTIONS(34), }, [1283] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(1389), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [sym_comment] = ACTIONS(432), + [sym_string] = STATE(1475), + [sym__simple_string] = ACTIONS(2074), + [sym__string_start] = ACTIONS(2076), + [sym__multiline_string_start] = ACTIONS(2078), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_case] = ACTIONS(584), + [anon_sym_object] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_val] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_var] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_def] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_implicit] = ACTIONS(584), + [anon_sym_lazy] = ACTIONS(584), + [anon_sym_override] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_else] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [1284] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1391), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2227), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_case] = ACTIONS(584), + [anon_sym_object] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_val] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_var] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_def] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_implicit] = ACTIONS(584), + [anon_sym_lazy] = ACTIONS(584), + [anon_sym_override] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_else] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [1285] = { - [sym_block] = STATE(1150), - [sym__expression] = STATE(1392), - [sym_if_expression] = STATE(1150), - [sym_match_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1150), - [sym_generic_function] = STATE(1150), - [sym_call_expression] = STATE(1150), - [sym_field_expression] = STATE(1150), - [sym_instance_expression] = STATE(1150), - [sym_infix_expression] = STATE(1150), - [sym_prefix_expression] = STATE(1150), - [sym_tuple_expression] = STATE(1150), - [sym_parenthesized_expression] = STATE(1150), - [sym_string_transform_expression] = STATE(1150), - [sym_string] = STATE(1150), - [sym__simple_string] = ACTIONS(1847), - [sym__string_start] = ACTIONS(1849), - [sym__multiline_string_start] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [sym_number] = ACTIONS(1865), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1483), + [sym_arguments] = STATE(1484), + [anon_sym_package] = ACTIONS(1435), + [anon_sym_import] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_object] = ACTIONS(1435), + [anon_sym_class] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_val] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(2347), + [anon_sym_var] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_abstract] = ACTIONS(1435), + [anon_sym_final] = ACTIONS(1435), + [anon_sym_sealed] = ACTIONS(1435), + [anon_sym_implicit] = ACTIONS(1435), + [anon_sym_lazy] = ACTIONS(1435), + [anon_sym_override] = ACTIONS(1435), + [anon_sym_private] = ACTIONS(1435), + [anon_sym_protected] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2355), + [sym_operator_identifier] = ACTIONS(2355), + [sym_comment] = ACTIONS(464), }, [1286] = { - [sym_type_arguments] = STATE(1296), - [sym_arguments] = STATE(1297), - [anon_sym_package] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_object] = ACTIONS(920), - [anon_sym_class] = ACTIONS(920), - [anon_sym_trait] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_val] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_var] = ACTIONS(920), - [anon_sym_type] = ACTIONS(920), - [anon_sym_def] = ACTIONS(920), - [anon_sym_abstract] = ACTIONS(920), - [anon_sym_final] = ACTIONS(920), - [anon_sym_sealed] = ACTIONS(920), - [anon_sym_implicit] = ACTIONS(920), - [anon_sym_lazy] = ACTIONS(920), - [anon_sym_override] = ACTIONS(920), - [anon_sym_private] = ACTIONS(920), - [anon_sym_protected] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1453), + [anon_sym_import] = ACTIONS(1453), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_case] = ACTIONS(1453), + [anon_sym_object] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1453), + [anon_sym_trait] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_val] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_abstract] = ACTIONS(1453), + [anon_sym_final] = ACTIONS(1453), + [anon_sym_sealed] = ACTIONS(1453), + [anon_sym_implicit] = ACTIONS(1453), + [anon_sym_lazy] = ACTIONS(1453), + [anon_sym_override] = ACTIONS(1453), + [anon_sym_private] = ACTIONS(1453), + [anon_sym_protected] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), }, [1287] = { - [sym_type_arguments] = STATE(1296), - [sym_arguments] = STATE(1297), - [anon_sym_package] = ACTIONS(926), - [anon_sym_import] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_object] = ACTIONS(926), - [anon_sym_class] = ACTIONS(926), - [anon_sym_trait] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_val] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_var] = ACTIONS(926), - [anon_sym_type] = ACTIONS(926), - [anon_sym_def] = ACTIONS(926), - [anon_sym_abstract] = ACTIONS(926), - [anon_sym_final] = ACTIONS(926), - [anon_sym_sealed] = ACTIONS(926), - [anon_sym_implicit] = ACTIONS(926), - [anon_sym_lazy] = ACTIONS(926), - [anon_sym_override] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_protected] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(926), - [anon_sym_match] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1486), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2357), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1288] = { - [anon_sym_package] = ACTIONS(932), - [anon_sym_import] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_object] = ACTIONS(932), - [anon_sym_class] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_val] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_var] = ACTIONS(932), - [anon_sym_type] = ACTIONS(932), - [anon_sym_def] = ACTIONS(932), - [anon_sym_abstract] = ACTIONS(932), - [anon_sym_final] = ACTIONS(932), - [anon_sym_sealed] = ACTIONS(932), - [anon_sym_implicit] = ACTIONS(932), - [anon_sym_lazy] = ACTIONS(932), - [anon_sym_override] = ACTIONS(932), - [anon_sym_private] = ACTIONS(932), - [anon_sym_protected] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(1461), + [anon_sym_import] = ACTIONS(1461), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_object] = ACTIONS(1461), + [anon_sym_class] = ACTIONS(1461), + [anon_sym_trait] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(1461), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1461), + [anon_sym_def] = ACTIONS(1461), + [anon_sym_abstract] = ACTIONS(1461), + [anon_sym_final] = ACTIONS(1461), + [anon_sym_sealed] = ACTIONS(1461), + [anon_sym_implicit] = ACTIONS(1461), + [anon_sym_lazy] = ACTIONS(1461), + [anon_sym_override] = ACTIONS(1461), + [anon_sym_private] = ACTIONS(1461), + [anon_sym_protected] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1289] = { - [sym_identifier] = ACTIONS(2229), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_object] = ACTIONS(1465), + [anon_sym_class] = ACTIONS(1465), + [anon_sym_trait] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_val] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1465), + [anon_sym_abstract] = ACTIONS(1465), + [anon_sym_final] = ACTIONS(1465), + [anon_sym_sealed] = ACTIONS(1465), + [anon_sym_implicit] = ACTIONS(1465), + [anon_sym_lazy] = ACTIONS(1465), + [anon_sym_override] = ACTIONS(1465), + [anon_sym_private] = ACTIONS(1465), + [anon_sym_protected] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), }, [1290] = { - [sym__type] = STATE(1394), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1488), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1291] = { - [sym_block] = STATE(1150), - [sym__expression] = STATE(1395), - [sym_if_expression] = STATE(1150), - [sym_match_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1150), - [sym_generic_function] = STATE(1150), - [sym_call_expression] = STATE(1150), - [sym_field_expression] = STATE(1150), - [sym_instance_expression] = STATE(1150), - [sym_infix_expression] = STATE(1150), - [sym_prefix_expression] = STATE(1150), - [sym_tuple_expression] = STATE(1150), - [sym_parenthesized_expression] = STATE(1150), - [sym_string_transform_expression] = STATE(1150), - [sym_string] = STATE(1150), - [sym__simple_string] = ACTIONS(1847), - [sym__string_start] = ACTIONS(1849), - [sym__multiline_string_start] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [sym_number] = ACTIONS(1865), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(1005), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(942), [sym_comment] = ACTIONS(34), }, [1292] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1397), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1475), + [anon_sym_import] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_case] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [anon_sym_class] = ACTIONS(1475), + [anon_sym_trait] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_val] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_var] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1475), + [anon_sym_abstract] = ACTIONS(1475), + [anon_sym_final] = ACTIONS(1475), + [anon_sym_sealed] = ACTIONS(1475), + [anon_sym_implicit] = ACTIONS(1475), + [anon_sym_lazy] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), }, [1293] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(1398), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_object] = ACTIONS(1481), + [anon_sym_class] = ACTIONS(1481), + [anon_sym_trait] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_type] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_abstract] = ACTIONS(1481), + [anon_sym_final] = ACTIONS(1481), + [anon_sym_sealed] = ACTIONS(1481), + [anon_sym_implicit] = ACTIONS(1481), + [anon_sym_lazy] = ACTIONS(1481), + [anon_sym_override] = ACTIONS(1481), + [anon_sym_private] = ACTIONS(1481), + [anon_sym_protected] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), }, [1294] = { - [sym_case_block] = STATE(1400), - [anon_sym_LBRACE] = ACTIONS(2233), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_case] = ACTIONS(1487), + [anon_sym_object] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1487), + [anon_sym_trait] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_val] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_var] = ACTIONS(1487), + [anon_sym_type] = ACTIONS(1487), + [anon_sym_def] = ACTIONS(1487), + [anon_sym_abstract] = ACTIONS(1487), + [anon_sym_final] = ACTIONS(1487), + [anon_sym_sealed] = ACTIONS(1487), + [anon_sym_implicit] = ACTIONS(1487), + [anon_sym_lazy] = ACTIONS(1487), + [anon_sym_override] = ACTIONS(1487), + [anon_sym_private] = ACTIONS(1487), + [anon_sym_protected] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), }, [1295] = { - [sym_block] = STATE(1150), - [sym__expression] = STATE(1401), - [sym_if_expression] = STATE(1150), - [sym_match_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1150), - [sym_generic_function] = STATE(1150), - [sym_call_expression] = STATE(1150), - [sym_field_expression] = STATE(1150), - [sym_instance_expression] = STATE(1150), - [sym_infix_expression] = STATE(1150), - [sym_prefix_expression] = STATE(1150), - [sym_tuple_expression] = STATE(1150), - [sym_parenthesized_expression] = STATE(1150), - [sym_string_transform_expression] = STATE(1150), - [sym_string] = STATE(1150), - [sym__simple_string] = ACTIONS(1847), - [sym__string_start] = ACTIONS(1849), - [sym__multiline_string_start] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [sym_number] = ACTIONS(1865), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(1503), + [anon_sym_import] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_case] = ACTIONS(1503), + [anon_sym_object] = ACTIONS(1503), + [anon_sym_class] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(1503), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_def] = ACTIONS(1503), + [anon_sym_abstract] = ACTIONS(1503), + [anon_sym_final] = ACTIONS(1503), + [anon_sym_sealed] = ACTIONS(1503), + [anon_sym_implicit] = ACTIONS(1503), + [anon_sym_lazy] = ACTIONS(1503), + [anon_sym_override] = ACTIONS(1503), + [anon_sym_private] = ACTIONS(1503), + [anon_sym_protected] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1296] = { - [anon_sym_package] = ACTIONS(944), - [anon_sym_import] = ACTIONS(944), - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_class] = ACTIONS(944), - [anon_sym_trait] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_val] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_var] = ACTIONS(944), - [anon_sym_type] = ACTIONS(944), - [anon_sym_def] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(944), - [anon_sym_final] = ACTIONS(944), - [anon_sym_sealed] = ACTIONS(944), - [anon_sym_implicit] = ACTIONS(944), - [anon_sym_lazy] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_else] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [anon_sym_class] = ACTIONS(1273), + [anon_sym_trait] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_val] = ACTIONS(1273), + [anon_sym_var] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1273), + [anon_sym_abstract] = ACTIONS(1273), + [anon_sym_final] = ACTIONS(1273), + [anon_sym_sealed] = ACTIONS(1273), + [anon_sym_implicit] = ACTIONS(1273), + [anon_sym_lazy] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_with] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [1297] = { - [anon_sym_package] = ACTIONS(950), - [anon_sym_import] = ACTIONS(950), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_object] = ACTIONS(950), - [anon_sym_class] = ACTIONS(950), - [anon_sym_trait] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_val] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_var] = ACTIONS(950), - [anon_sym_type] = ACTIONS(950), - [anon_sym_def] = ACTIONS(950), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_final] = ACTIONS(950), - [anon_sym_sealed] = ACTIONS(950), - [anon_sym_implicit] = ACTIONS(950), - [anon_sym_lazy] = ACTIONS(950), - [anon_sym_override] = ACTIONS(950), - [anon_sym_private] = ACTIONS(950), - [anon_sym_protected] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_else] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1491), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2363), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1298] = { - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_object] = ACTIONS(1291), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_val] = ACTIONS(1291), + [anon_sym_var] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(1291), + [anon_sym_final] = ACTIONS(1291), + [anon_sym_sealed] = ACTIONS(1291), + [anon_sym_implicit] = ACTIONS(1291), + [anon_sym_lazy] = ACTIONS(1291), + [anon_sym_override] = ACTIONS(1291), + [anon_sym_private] = ACTIONS(1291), + [anon_sym_protected] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [1299] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2235), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_object] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(1297), + [anon_sym_trait] = ACTIONS(1297), + [anon_sym_val] = ACTIONS(1297), + [anon_sym_var] = ACTIONS(1297), + [anon_sym_type] = ACTIONS(1297), + [anon_sym_def] = ACTIONS(1297), + [anon_sym_abstract] = ACTIONS(1297), + [anon_sym_final] = ACTIONS(1297), + [anon_sym_sealed] = ACTIONS(1297), + [anon_sym_implicit] = ACTIONS(1297), + [anon_sym_lazy] = ACTIONS(1297), + [anon_sym_override] = ACTIONS(1297), + [anon_sym_private] = ACTIONS(1297), + [anon_sym_protected] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [1300] = { - [anon_sym_package] = ACTIONS(1665), - [anon_sym_import] = ACTIONS(1665), - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_case] = ACTIONS(1665), - [anon_sym_object] = ACTIONS(1665), - [anon_sym_class] = ACTIONS(1665), - [anon_sym_trait] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_val] = ACTIONS(1665), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_var] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_def] = ACTIONS(1665), - [anon_sym_abstract] = ACTIONS(1665), - [anon_sym_final] = ACTIONS(1665), - [anon_sym_sealed] = ACTIONS(1665), - [anon_sym_implicit] = ACTIONS(1665), - [anon_sym_lazy] = ACTIONS(1665), - [anon_sym_override] = ACTIONS(1665), - [anon_sym_private] = ACTIONS(1665), - [anon_sym_protected] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_match] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_object] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_val] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_sealed] = ACTIONS(1303), + [anon_sym_implicit] = ACTIONS(1303), + [anon_sym_lazy] = ACTIONS(1303), + [anon_sym_override] = ACTIONS(1303), + [anon_sym_private] = ACTIONS(1303), + [anon_sym_protected] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [sym_operator_identifier] = ACTIONS(1700), + [sym_comment] = ACTIONS(464), }, [1301] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2237), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), + [anon_sym_class] = ACTIONS(1273), + [anon_sym_trait] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_val] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_var] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_def] = ACTIONS(1273), + [anon_sym_abstract] = ACTIONS(1273), + [anon_sym_final] = ACTIONS(1273), + [anon_sym_sealed] = ACTIONS(1273), + [anon_sym_implicit] = ACTIONS(1273), + [anon_sym_lazy] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_with] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [1302] = { - [anon_sym_package] = ACTIONS(1673), - [anon_sym_import] = ACTIONS(1673), - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_object] = ACTIONS(1673), - [anon_sym_class] = ACTIONS(1673), - [anon_sym_trait] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_val] = ACTIONS(1673), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_var] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_def] = ACTIONS(1673), - [anon_sym_abstract] = ACTIONS(1673), - [anon_sym_final] = ACTIONS(1673), - [anon_sym_sealed] = ACTIONS(1673), - [anon_sym_implicit] = ACTIONS(1673), - [anon_sym_lazy] = ACTIONS(1673), - [anon_sym_override] = ACTIONS(1673), - [anon_sym_private] = ACTIONS(1673), - [anon_sym_protected] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_match] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1493), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2365), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1303] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(1614), + [anon_sym_import] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_case] = ACTIONS(1614), + [anon_sym_object] = ACTIONS(1614), + [anon_sym_class] = ACTIONS(1614), + [anon_sym_trait] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(1614), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(1614), + [anon_sym_type] = ACTIONS(1614), + [anon_sym_def] = ACTIONS(1614), + [anon_sym_abstract] = ACTIONS(1614), + [anon_sym_final] = ACTIONS(1614), + [anon_sym_sealed] = ACTIONS(1614), + [anon_sym_implicit] = ACTIONS(1614), + [anon_sym_lazy] = ACTIONS(1614), + [anon_sym_override] = ACTIONS(1614), + [anon_sym_private] = ACTIONS(1614), + [anon_sym_protected] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1304] = { - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_object] = ACTIONS(1291), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_val] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_var] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(1291), + [anon_sym_final] = ACTIONS(1291), + [anon_sym_sealed] = ACTIONS(1291), + [anon_sym_implicit] = ACTIONS(1291), + [anon_sym_lazy] = ACTIONS(1291), + [anon_sym_override] = ACTIONS(1291), + [anon_sym_private] = ACTIONS(1291), + [anon_sym_protected] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [1305] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2241), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_object] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(1297), + [anon_sym_trait] = ACTIONS(1297), + [anon_sym_val] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1297), + [anon_sym_var] = ACTIONS(1297), + [anon_sym_type] = ACTIONS(1297), + [anon_sym_def] = ACTIONS(1297), + [anon_sym_abstract] = ACTIONS(1297), + [anon_sym_final] = ACTIONS(1297), + [anon_sym_sealed] = ACTIONS(1297), + [anon_sym_implicit] = ACTIONS(1297), + [anon_sym_lazy] = ACTIONS(1297), + [anon_sym_override] = ACTIONS(1297), + [anon_sym_private] = ACTIONS(1297), + [anon_sym_protected] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [1306] = { - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1303), + [anon_sym_import] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_object] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_val] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_sealed] = ACTIONS(1303), + [anon_sym_implicit] = ACTIONS(1303), + [anon_sym_lazy] = ACTIONS(1303), + [anon_sym_override] = ACTIONS(1303), + [anon_sym_private] = ACTIONS(1303), + [anon_sym_protected] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [sym_operator_identifier] = ACTIONS(1712), + [sym_comment] = ACTIONS(464), }, [1307] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2243), + [sym_block] = STATE(727), + [sym__expression] = STATE(1494), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [1308] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_object] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_trait] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_def] = ACTIONS(1827), - [anon_sym_abstract] = ACTIONS(1827), - [anon_sym_final] = ACTIONS(1827), - [anon_sym_sealed] = ACTIONS(1827), - [anon_sym_implicit] = ACTIONS(1827), - [anon_sym_lazy] = ACTIONS(1827), - [anon_sym_override] = ACTIONS(1827), - [anon_sym_private] = ACTIONS(1827), - [anon_sym_protected] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(979), + [anon_sym_package] = ACTIONS(1629), + [anon_sym_import] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_object] = ACTIONS(1629), + [anon_sym_class] = ACTIONS(1629), + [anon_sym_trait] = ACTIONS(1629), + [anon_sym_val] = ACTIONS(1629), + [anon_sym_EQ] = ACTIONS(2367), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_def] = ACTIONS(1629), + [anon_sym_abstract] = ACTIONS(1629), + [anon_sym_final] = ACTIONS(1629), + [anon_sym_sealed] = ACTIONS(1629), + [anon_sym_implicit] = ACTIONS(1629), + [anon_sym_lazy] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_with] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [sym_operator_identifier] = ACTIONS(1712), + [sym_comment] = ACTIONS(464), }, [1309] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(1407), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), + [sym_template_body] = STATE(703), + [sym_extends_clause] = STATE(980), + [anon_sym_package] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(102), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_object] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(1204), + [anon_sym_trait] = ACTIONS(1204), + [anon_sym_val] = ACTIONS(1204), + [anon_sym_var] = ACTIONS(1204), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_def] = ACTIONS(1204), + [anon_sym_abstract] = ACTIONS(1204), + [anon_sym_final] = ACTIONS(1204), + [anon_sym_sealed] = ACTIONS(1204), + [anon_sym_implicit] = ACTIONS(1204), + [anon_sym_lazy] = ACTIONS(1204), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_private] = ACTIONS(1204), + [anon_sym_protected] = ACTIONS(1204), + [anon_sym_extends] = ACTIONS(769), [sym_comment] = ACTIONS(34), }, [1310] = { - [sym_block] = STATE(1121), - [anon_sym_package] = ACTIONS(1831), - [anon_sym_import] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_case] = ACTIONS(1831), - [anon_sym_object] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_trait] = ACTIONS(1831), - [anon_sym_val] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(2245), - [anon_sym_var] = ACTIONS(1831), - [anon_sym_type] = ACTIONS(1831), - [anon_sym_def] = ACTIONS(1831), - [anon_sym_abstract] = ACTIONS(1831), - [anon_sym_final] = ACTIONS(1831), - [anon_sym_sealed] = ACTIONS(1831), - [anon_sym_implicit] = ACTIONS(1831), - [anon_sym_lazy] = ACTIONS(1831), - [anon_sym_override] = ACTIONS(1831), - [anon_sym_private] = ACTIONS(1831), - [anon_sym_protected] = ACTIONS(1831), - [anon_sym_with] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1549), - [sym_operator_identifier] = ACTIONS(1549), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(727), + [sym__expression] = STATE(1496), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), + [sym_comment] = ACTIONS(34), }, [1311] = { - [anon_sym_COMMA] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_with] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1635), + [anon_sym_RBRACE] = ACTIONS(1635), + [anon_sym_case] = ACTIONS(1635), + [anon_sym_object] = ACTIONS(1635), + [anon_sym_class] = ACTIONS(1635), + [anon_sym_trait] = ACTIONS(1635), + [anon_sym_val] = ACTIONS(1635), + [anon_sym_var] = ACTIONS(1635), + [anon_sym_type] = ACTIONS(1635), + [anon_sym_def] = ACTIONS(1635), + [anon_sym_abstract] = ACTIONS(1635), + [anon_sym_final] = ACTIONS(1635), + [anon_sym_sealed] = ACTIONS(1635), + [anon_sym_implicit] = ACTIONS(1635), + [anon_sym_lazy] = ACTIONS(1635), + [anon_sym_override] = ACTIONS(1635), + [anon_sym_private] = ACTIONS(1635), + [anon_sym_protected] = ACTIONS(1635), + [anon_sym_with] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [sym_operator_identifier] = ACTIONS(1700), + [sym_comment] = ACTIONS(464), }, [1312] = { - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_else] = ACTIONS(827), - [anon_sym_match] = ACTIONS(827), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(727), + [sym__expression] = STATE(1497), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), + [sym_comment] = ACTIONS(34), }, [1313] = { - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1592), - [anon_sym_match] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1639), + [anon_sym_import] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_class] = ACTIONS(1639), + [anon_sym_trait] = ACTIONS(1639), + [anon_sym_val] = ACTIONS(1639), + [anon_sym_var] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_def] = ACTIONS(1639), + [anon_sym_abstract] = ACTIONS(1639), + [anon_sym_final] = ACTIONS(1639), + [anon_sym_sealed] = ACTIONS(1639), + [anon_sym_implicit] = ACTIONS(1639), + [anon_sym_lazy] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_with] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [sym_operator_identifier] = ACTIONS(1700), + [sym_comment] = ACTIONS(464), }, [1314] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1643), + [anon_sym_import] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_case] = ACTIONS(1643), + [anon_sym_object] = ACTIONS(1643), + [anon_sym_class] = ACTIONS(1643), + [anon_sym_trait] = ACTIONS(1643), + [anon_sym_val] = ACTIONS(1643), + [anon_sym_var] = ACTIONS(1643), + [anon_sym_type] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_abstract] = ACTIONS(1643), + [anon_sym_final] = ACTIONS(1643), + [anon_sym_sealed] = ACTIONS(1643), + [anon_sym_implicit] = ACTIONS(1643), + [anon_sym_lazy] = ACTIONS(1643), + [anon_sym_override] = ACTIONS(1643), + [anon_sym_private] = ACTIONS(1643), + [anon_sym_protected] = ACTIONS(1643), + [anon_sym_with] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [sym_operator_identifier] = ACTIONS(1700), + [sym_comment] = ACTIONS(464), }, [1315] = { - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_COMMA] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_RPAREN] = ACTIONS(1632), - [anon_sym_else] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1498), + [sym_compound_type] = STATE(744), + [sym_infix_type] = STATE(744), + [sym_stable_type_identifier] = STATE(745), + [sym_stable_identifier] = STATE(746), + [sym_generic_type] = STATE(744), + [sym_function_type] = STATE(744), + [sym_parameter_types] = STATE(747), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1238), + [sym_comment] = ACTIONS(34), }, [1316] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(1410), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(2118), + [anon_sym_RBRACK] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_with] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2120), + [sym_comment] = ACTIONS(464), }, [1317] = { - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_else] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1318] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2249), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_with] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1319] = { - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_COMMA] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2371), + [sym_comment] = ACTIONS(34), }, [1320] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2251), - [sym_comment] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(2118), + [anon_sym_COLON] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1321] = { - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_COMMA] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(1501), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2373), + [sym_comment] = ACTIONS(34), }, [1322] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_case] = ACTIONS(1338), + [aux_sym_string_repeat2] = STATE(1502), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2373), [sym_comment] = ACTIONS(34), }, [1323] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(2255), - [anon_sym_match] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1930), - [sym_operator_identifier] = ACTIONS(1930), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_match] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [1324] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1930), - [sym_operator_identifier] = ACTIONS(1930), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(1505), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_LF] = ACTIONS(2377), + [sym_comment] = ACTIONS(464), }, [1325] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(1294), - [sym_operator_identifier] = ACTIONS(1294), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(1505), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_LF] = ACTIONS(2377), + [sym_comment] = ACTIONS(464), }, [1326] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [anon_sym_package] = ACTIONS(1900), - [anon_sym_import] = ACTIONS(1900), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1900), - [anon_sym_object] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_val] = ACTIONS(1900), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_var] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_def] = ACTIONS(1900), - [anon_sym_abstract] = ACTIONS(1900), - [anon_sym_final] = ACTIONS(1900), - [anon_sym_sealed] = ACTIONS(1900), - [anon_sym_implicit] = ACTIONS(1900), - [anon_sym_lazy] = ACTIONS(1900), - [anon_sym_override] = ACTIONS(1900), - [anon_sym_private] = ACTIONS(1900), - [anon_sym_protected] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [1327] = { - [sym_type_arguments] = STATE(787), - [sym_arguments] = STATE(788), - [ts_builtin_sym_end] = ACTIONS(1948), - [anon_sym_package] = ACTIONS(1950), - [anon_sym_import] = ACTIONS(1950), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1950), - [anon_sym_object] = ACTIONS(1950), - [anon_sym_class] = ACTIONS(1950), - [anon_sym_trait] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_val] = ACTIONS(1950), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_var] = ACTIONS(1950), - [anon_sym_type] = ACTIONS(1950), - [anon_sym_def] = ACTIONS(1950), - [anon_sym_abstract] = ACTIONS(1950), - [anon_sym_final] = ACTIONS(1950), - [anon_sym_sealed] = ACTIONS(1950), - [anon_sym_implicit] = ACTIONS(1950), - [anon_sym_lazy] = ACTIONS(1950), - [anon_sym_override] = ACTIONS(1950), - [anon_sym_private] = ACTIONS(1950), - [anon_sym_protected] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [sym_operator_identifier] = ACTIONS(1314), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1508), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1328] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1885), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1518), + [sym__expression] = STATE(1519), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_case_block] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_generic_function] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_field_expression] = STATE(1518), + [sym_instance_expression] = STATE(1518), + [sym_infix_expression] = STATE(1518), + [sym_prefix_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_string_transform_expression] = STATE(1518), + [sym_string] = STATE(1518), + [sym__simple_string] = ACTIONS(2383), + [sym__string_start] = ACTIONS(2385), + [sym__multiline_string_start] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2399), + [sym_number] = ACTIONS(2401), + [sym_comment] = ACTIONS(34), }, [1329] = { - [ts_builtin_sym_end] = ACTIONS(1954), - [anon_sym_package] = ACTIONS(1956), - [anon_sym_import] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_case] = ACTIONS(1956), - [anon_sym_object] = ACTIONS(1956), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_val] = ACTIONS(1956), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_var] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_def] = ACTIONS(1956), - [anon_sym_abstract] = ACTIONS(1956), - [anon_sym_final] = ACTIONS(1956), - [anon_sym_sealed] = ACTIONS(1956), - [anon_sym_implicit] = ACTIONS(1956), - [anon_sym_lazy] = ACTIONS(1956), - [anon_sym_override] = ACTIONS(1956), - [anon_sym_private] = ACTIONS(1956), - [anon_sym_protected] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1338), + [sym_arguments] = STATE(1339), + [anon_sym_DOT] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_case] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [1330] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [anon_sym_package] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_object] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_val] = ACTIONS(1968), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_def] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_final] = ACTIONS(1968), - [anon_sym_sealed] = ACTIONS(1968), - [anon_sym_implicit] = ACTIONS(1968), - [anon_sym_lazy] = ACTIONS(1968), - [anon_sym_override] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_protected] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1338), + [sym_arguments] = STATE(1339), + [anon_sym_DOT] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [1331] = { - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_RBRACE] = ACTIONS(112), - [anon_sym_case] = ACTIONS(112), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_match] = ACTIONS(112), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_case] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [1332] = { - [sym_interpolation] = STATE(1415), - [anon_sym_DOLLAR] = ACTIONS(114), + [sym_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(34), }, [1333] = { - [sym_interpolation] = STATE(1416), - [anon_sym_DOLLAR] = ACTIONS(116), + [sym__type] = STATE(1521), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [1334] = { - [sym_package_clause] = STATE(1418), - [sym_import_declaration] = STATE(1418), - [sym_object_definition] = STATE(1418), - [sym_class_definition] = STATE(1418), - [sym_trait_definition] = STATE(1418), - [sym_val_definition] = STATE(1418), - [sym_val_declaration] = STATE(1418), - [sym_var_declaration] = STATE(1418), - [sym_var_definition] = STATE(1418), - [sym_type_definition] = STATE(1418), - [sym_function_definition] = STATE(1418), - [sym_function_declaration] = STATE(1418), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(1419), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_block] = STATE(1081), + [sym__expression] = STATE(1522), + [sym_if_expression] = STATE(1081), + [sym_match_expression] = STATE(1081), + [sym_case_block] = STATE(1081), + [sym_assignment_expression] = STATE(1081), + [sym_generic_function] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_field_expression] = STATE(1081), + [sym_instance_expression] = STATE(1081), + [sym_infix_expression] = STATE(1081), + [sym_prefix_expression] = STATE(1081), + [sym_tuple_expression] = STATE(1081), + [sym_parenthesized_expression] = STATE(1081), + [sym_string_transform_expression] = STATE(1081), + [sym_string] = STATE(1081), + [sym__simple_string] = ACTIONS(1761), + [sym__string_start] = ACTIONS(1763), + [sym__multiline_string_start] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [sym_number] = ACTIONS(1779), [sym_comment] = ACTIONS(34), }, [1335] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1420), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym_block] = STATE(340), + [sym__expression] = STATE(1524), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [1336] = { - [sym_parenthesized_expression] = STATE(1421), - [anon_sym_LPAREN] = ACTIONS(546), + [sym_case_block] = STATE(1526), + [anon_sym_LBRACE] = ACTIONS(2407), [sym_comment] = ACTIONS(34), }, [1337] = { - [sym_block] = STATE(1340), - [sym__expression] = STATE(1422), - [sym_if_expression] = STATE(1340), - [sym_match_expression] = STATE(1340), - [sym_assignment_expression] = STATE(1340), - [sym_generic_function] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_field_expression] = STATE(1340), - [sym_instance_expression] = STATE(1340), - [sym_infix_expression] = STATE(1340), - [sym_prefix_expression] = STATE(1340), - [sym_tuple_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_string_transform_expression] = STATE(1340), - [sym_string] = STATE(1340), - [sym__simple_string] = ACTIONS(2125), - [sym__string_start] = ACTIONS(2127), - [sym__multiline_string_start] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [sym_number] = ACTIONS(2143), + [sym_block] = STATE(1081), + [sym__expression] = STATE(1527), + [sym_if_expression] = STATE(1081), + [sym_match_expression] = STATE(1081), + [sym_case_block] = STATE(1081), + [sym_assignment_expression] = STATE(1081), + [sym_generic_function] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_field_expression] = STATE(1081), + [sym_instance_expression] = STATE(1081), + [sym_infix_expression] = STATE(1081), + [sym_prefix_expression] = STATE(1081), + [sym_tuple_expression] = STATE(1081), + [sym_parenthesized_expression] = STATE(1081), + [sym_string_transform_expression] = STATE(1081), + [sym_string] = STATE(1081), + [sym__simple_string] = ACTIONS(1761), + [sym__string_start] = ACTIONS(1763), + [sym__multiline_string_start] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [sym_number] = ACTIONS(1779), [sym_comment] = ACTIONS(34), }, [1338] = { - [sym_block] = STATE(1340), - [sym__expression] = STATE(1423), - [sym_if_expression] = STATE(1340), - [sym_match_expression] = STATE(1340), - [sym_assignment_expression] = STATE(1340), - [sym_generic_function] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_field_expression] = STATE(1340), - [sym_instance_expression] = STATE(1340), - [sym_infix_expression] = STATE(1340), - [sym_prefix_expression] = STATE(1340), - [sym_tuple_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_string_transform_expression] = STATE(1340), - [sym_string] = STATE(1340), - [sym__simple_string] = ACTIONS(2125), - [sym__string_start] = ACTIONS(2127), - [sym__multiline_string_start] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [sym_number] = ACTIONS(2143), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [1339] = { - [sym_string] = STATE(1424), - [sym__simple_string] = ACTIONS(2125), - [sym__string_start] = ACTIONS(2127), - [sym__multiline_string_start] = ACTIONS(2129), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_case] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1528), + [sym_case_block] = STATE(1528), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [1340] = { - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_case] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2411), + [sym_comment] = ACTIONS(34), }, [1341] = { - [sym_type_arguments] = STATE(1431), - [sym_arguments] = STATE(1432), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_case] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_EQ] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2269), - [sym_identifier] = ACTIONS(2271), - [sym_operator_identifier] = ACTIONS(2271), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1530), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1342] = { - [sym_type_arguments] = STATE(1435), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_EQ_GT] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_with] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_if] = ACTIONS(424), - [sym_identifier] = ACTIONS(430), - [sym_operator_identifier] = ACTIONS(430), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_with] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [anon_sym_if] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_operator_identifier] = ACTIONS(851), + [sym_comment] = ACTIONS(464), }, [1343] = { - [anon_sym_EQ_GT] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_with] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_if] = ACTIONS(512), - [sym_identifier] = ACTIONS(2279), - [sym_operator_identifier] = ACTIONS(2279), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1531), + [sym_compound_type] = STATE(1085), + [sym_infix_type] = STATE(1085), + [sym_stable_type_identifier] = STATE(1086), + [sym_stable_identifier] = STATE(1087), + [sym_generic_type] = STATE(1085), + [sym_function_type] = STATE(1085), + [sym_parameter_types] = STATE(1088), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1781), + [sym_comment] = ACTIONS(34), }, [1344] = { - [anon_sym_EQ_GT] = ACTIONS(444), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [anon_sym_if] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1532), + [sym_compound_type] = STATE(1085), + [sym_infix_type] = STATE(1085), + [sym_stable_type_identifier] = STATE(1086), + [sym_stable_identifier] = STATE(1087), + [sym_generic_type] = STATE(1085), + [sym_function_type] = STATE(1085), + [sym_parameter_types] = STATE(1088), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1781), + [sym_comment] = ACTIONS(34), }, [1345] = { - [sym_type_arguments] = STATE(1438), - [anon_sym_EQ_GT] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_COLON] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [anon_sym_if] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_operator_identifier] = ACTIONS(446), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_with] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [sym_identifier] = ACTIONS(857), + [sym_operator_identifier] = ACTIONS(857), + [sym_comment] = ACTIONS(464), }, [1346] = { - [anon_sym_DOT] = ACTIONS(2273), + [sym__type] = STATE(1533), + [sym_compound_type] = STATE(1085), + [sym_infix_type] = STATE(1085), + [sym_stable_type_identifier] = STATE(1086), + [sym_stable_identifier] = STATE(1087), + [sym_generic_type] = STATE(1085), + [sym_function_type] = STATE(1085), + [sym_parameter_types] = STATE(1088), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1781), [sym_comment] = ACTIONS(34), }, [1347] = { - [anon_sym_EQ_GT] = ACTIONS(2281), + [aux_sym_string_repeat1] = STATE(1535), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2413), [sym_comment] = ACTIONS(34), }, [1348] = { - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_EQ_GT] = ACTIONS(112), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_match] = ACTIONS(112), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(1536), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2413), + [sym_comment] = ACTIONS(34), }, [1349] = { - [sym_interpolation] = STATE(1440), - [anon_sym_DOLLAR] = ACTIONS(114), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_EQ_GT] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_match] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [1350] = { - [sym_interpolation] = STATE(1441), - [anon_sym_DOLLAR] = ACTIONS(116), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(1539), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_LF] = ACTIONS(2417), + [sym_comment] = ACTIONS(464), }, [1351] = { - [sym_package_clause] = STATE(1443), - [sym_import_declaration] = STATE(1443), - [sym_object_definition] = STATE(1443), - [sym_class_definition] = STATE(1443), - [sym_trait_definition] = STATE(1443), - [sym_val_definition] = STATE(1443), - [sym_val_declaration] = STATE(1443), - [sym_var_declaration] = STATE(1443), - [sym_var_definition] = STATE(1443), - [sym_type_definition] = STATE(1443), - [sym_function_definition] = STATE(1443), - [sym_function_declaration] = STATE(1443), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(1444), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(1539), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_LF] = ACTIONS(2417), + [sym_comment] = ACTIONS(464), }, [1352] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1445), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_case] = ACTIONS(942), [sym_comment] = ACTIONS(34), }, [1353] = { - [sym_parenthesized_expression] = STATE(1446), - [anon_sym_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1542), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1354] = { - [sym_block] = STATE(1357), - [sym__expression] = STATE(1447), - [sym_if_expression] = STATE(1357), - [sym_match_expression] = STATE(1357), - [sym_assignment_expression] = STATE(1357), - [sym_generic_function] = STATE(1357), - [sym_call_expression] = STATE(1357), - [sym_field_expression] = STATE(1357), - [sym_instance_expression] = STATE(1357), - [sym_infix_expression] = STATE(1357), - [sym_prefix_expression] = STATE(1357), - [sym_tuple_expression] = STATE(1357), - [sym_parenthesized_expression] = STATE(1357), - [sym_string_transform_expression] = STATE(1357), - [sym_string] = STATE(1357), - [sym__simple_string] = ACTIONS(2147), - [sym__string_start] = ACTIONS(2149), - [sym__multiline_string_start] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [sym_number] = ACTIONS(2165), + [sym_block] = STATE(1552), + [sym__expression] = STATE(1553), + [sym_if_expression] = STATE(1552), + [sym_match_expression] = STATE(1552), + [sym_case_block] = STATE(1552), + [sym_assignment_expression] = STATE(1552), + [sym_generic_function] = STATE(1552), + [sym_call_expression] = STATE(1552), + [sym_field_expression] = STATE(1552), + [sym_instance_expression] = STATE(1552), + [sym_infix_expression] = STATE(1552), + [sym_prefix_expression] = STATE(1552), + [sym_tuple_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_string_transform_expression] = STATE(1552), + [sym_string] = STATE(1552), + [sym__simple_string] = ACTIONS(2423), + [sym__string_start] = ACTIONS(2425), + [sym__multiline_string_start] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_TILDE] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [sym_number] = ACTIONS(2441), [sym_comment] = ACTIONS(34), }, [1355] = { - [sym_block] = STATE(1357), - [sym__expression] = STATE(1448), - [sym_if_expression] = STATE(1357), - [sym_match_expression] = STATE(1357), - [sym_assignment_expression] = STATE(1357), - [sym_generic_function] = STATE(1357), - [sym_call_expression] = STATE(1357), - [sym_field_expression] = STATE(1357), - [sym_instance_expression] = STATE(1357), - [sym_infix_expression] = STATE(1357), - [sym_prefix_expression] = STATE(1357), - [sym_tuple_expression] = STATE(1357), - [sym_parenthesized_expression] = STATE(1357), - [sym_string_transform_expression] = STATE(1357), - [sym_string] = STATE(1357), - [sym__simple_string] = ACTIONS(2147), - [sym__string_start] = ACTIONS(2149), - [sym__multiline_string_start] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [sym_number] = ACTIONS(2165), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1364), + [sym_arguments] = STATE(1365), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_EQ_GT] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [1356] = { - [sym_string] = STATE(1449), - [sym__simple_string] = ACTIONS(2147), - [sym__string_start] = ACTIONS(2149), - [sym__multiline_string_start] = ACTIONS(2151), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_EQ_GT] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1364), + [sym_arguments] = STATE(1365), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_EQ_GT] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [1357] = { - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_EQ_GT] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_EQ_GT] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [1358] = { - [sym_type_arguments] = STATE(1456), - [sym_arguments] = STATE(1457), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_EQ_GT] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2297), - [sym_operator_identifier] = ACTIONS(2297), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2443), + [sym_comment] = ACTIONS(34), }, [1359] = { - [sym_block] = STATE(1340), - [sym__expression] = STATE(1458), - [sym_if_expression] = STATE(1340), - [sym_match_expression] = STATE(1340), - [sym_assignment_expression] = STATE(1340), - [sym_generic_function] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_field_expression] = STATE(1340), - [sym_instance_expression] = STATE(1340), - [sym_infix_expression] = STATE(1340), - [sym_prefix_expression] = STATE(1340), - [sym_tuple_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_string_transform_expression] = STATE(1340), - [sym_string] = STATE(1340), - [sym__simple_string] = ACTIONS(2125), - [sym__string_start] = ACTIONS(2127), - [sym__multiline_string_start] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [sym_number] = ACTIONS(2143), + [sym__type] = STATE(1555), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [1360] = { - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_LF] = ACTIONS(2299), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1098), + [sym__expression] = STATE(1556), + [sym_if_expression] = STATE(1098), + [sym_match_expression] = STATE(1098), + [sym_case_block] = STATE(1098), + [sym_assignment_expression] = STATE(1098), + [sym_generic_function] = STATE(1098), + [sym_call_expression] = STATE(1098), + [sym_field_expression] = STATE(1098), + [sym_instance_expression] = STATE(1098), + [sym_infix_expression] = STATE(1098), + [sym_prefix_expression] = STATE(1098), + [sym_tuple_expression] = STATE(1098), + [sym_parenthesized_expression] = STATE(1098), + [sym_string_transform_expression] = STATE(1098), + [sym_string] = STATE(1098), + [sym__simple_string] = ACTIONS(1783), + [sym__string_start] = ACTIONS(1785), + [sym__multiline_string_start] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [sym_number] = ACTIONS(1801), + [sym_comment] = ACTIONS(34), }, [1361] = { - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_SEMI] = ACTIONS(2301), - [anon_sym_LF] = ACTIONS(2301), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(1558), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [1362] = { - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_with] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_LF] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_case_block] = STATE(1560), + [anon_sym_LBRACE] = ACTIONS(2447), + [sym_comment] = ACTIONS(34), }, [1363] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2303), + [sym_block] = STATE(1098), + [sym__expression] = STATE(1561), + [sym_if_expression] = STATE(1098), + [sym_match_expression] = STATE(1098), + [sym_case_block] = STATE(1098), + [sym_assignment_expression] = STATE(1098), + [sym_generic_function] = STATE(1098), + [sym_call_expression] = STATE(1098), + [sym_field_expression] = STATE(1098), + [sym_instance_expression] = STATE(1098), + [sym_infix_expression] = STATE(1098), + [sym_prefix_expression] = STATE(1098), + [sym_tuple_expression] = STATE(1098), + [sym_parenthesized_expression] = STATE(1098), + [sym_string_transform_expression] = STATE(1098), + [sym_string] = STATE(1098), + [sym__simple_string] = ACTIONS(1783), + [sym__string_start] = ACTIONS(1785), + [sym__multiline_string_start] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [sym_number] = ACTIONS(1801), [sym_comment] = ACTIONS(34), }, [1364] = { - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_COLON] = ACTIONS(1570), - [anon_sym_EQ] = ACTIONS(1570), - [anon_sym_with] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_LF] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_EQ_GT] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [1365] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2305), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(1562), + [sym_case_block] = STATE(1562), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_EQ_GT] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [1366] = { - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_with] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_LF] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1338), + [sym_arguments] = STATE(1339), + [anon_sym_DOT] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_case] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_EQ] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [sym_operator_identifier] = ACTIONS(2147), + [sym_comment] = ACTIONS(464), }, [1367] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2307), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_COMMA] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), }, [1368] = { - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_LF] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_else] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), }, [1369] = { - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_EQ] = ACTIONS(1570), - [anon_sym_with] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_LF] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2453), + [sym_comment] = ACTIONS(34), }, [1370] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2309), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2453), [sym_comment] = ACTIONS(34), }, [1371] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_LF] = ACTIONS(2311), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), }, [1372] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(1463), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1373] = { - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_LF] = ACTIONS(2311), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_LF] = ACTIONS(2459), + [sym_comment] = ACTIONS(464), }, [1374] = { - [anon_sym_DOT] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_else] = ACTIONS(1902), - [anon_sym_match] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_LF] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_match] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), }, [1375] = { - [sym_type_arguments] = STATE(880), - [sym_arguments] = STATE(881), - [anon_sym_DOT] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [sym_operator_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_LF] = ACTIONS(2039), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_COMMA] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_RPAREN] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), }, [1376] = { - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2461), + [sym_comment] = ACTIONS(34), }, [1377] = { - [anon_sym_DOT] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_EQ] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_else] = ACTIONS(1958), - [anon_sym_match] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_LF] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(1833), + [sym_identifier] = ACTIONS(1835), + [sym_operator_identifier] = ACTIONS(1835), + [sym_comment] = ACTIONS(464), }, [1378] = { - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_else] = ACTIONS(1970), - [anon_sym_match] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_COMMA] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), }, [1379] = { - [sym_template_body] = STATE(1464), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_SEMI] = ACTIONS(2301), - [anon_sym_LF] = ACTIONS(2301), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1569), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2465), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1380] = { - [sym_block] = STATE(1466), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_EQ] = ACTIONS(2315), - [anon_sym_with] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [sym_operator_identifier] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_LF] = ACTIONS(2313), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1835), + [sym_operator_identifier] = ACTIONS(1835), + [sym_comment] = ACTIONS(464), }, [1381] = { - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_match] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), }, [1382] = { - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1571), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1383] = { - [anon_sym_package] = ACTIONS(1900), - [anon_sym_import] = ACTIONS(1900), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_case] = ACTIONS(1900), - [anon_sym_object] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_val] = ACTIONS(1900), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_var] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_def] = ACTIONS(1900), - [anon_sym_abstract] = ACTIONS(1900), - [anon_sym_final] = ACTIONS(1900), - [anon_sym_sealed] = ACTIONS(1900), - [anon_sym_implicit] = ACTIONS(1900), - [anon_sym_lazy] = ACTIONS(1900), - [anon_sym_override] = ACTIONS(1900), - [anon_sym_private] = ACTIONS(1900), - [anon_sym_protected] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_match] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1384] = { - [anon_sym_package] = ACTIONS(482), - [anon_sym_import] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_case] = ACTIONS(482), - [anon_sym_object] = ACTIONS(482), - [anon_sym_class] = ACTIONS(482), - [anon_sym_trait] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_val] = ACTIONS(482), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_var] = ACTIONS(482), - [anon_sym_type] = ACTIONS(482), - [anon_sym_def] = ACTIONS(482), - [anon_sym_abstract] = ACTIONS(482), - [anon_sym_final] = ACTIONS(482), - [anon_sym_sealed] = ACTIONS(482), - [anon_sym_implicit] = ACTIONS(482), - [anon_sym_lazy] = ACTIONS(482), - [anon_sym_override] = ACTIONS(482), - [anon_sym_private] = ACTIONS(482), - [anon_sym_protected] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_else] = ACTIONS(482), - [anon_sym_match] = ACTIONS(482), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(1111), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [1385] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2317), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_RPAREN] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1475), + [anon_sym_match] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), }, [1386] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2317), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), }, [1387] = { - [anon_sym_package] = ACTIONS(1238), - [anon_sym_import] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_object] = ACTIONS(1238), - [anon_sym_class] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_val] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_var] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_def] = ACTIONS(1238), - [anon_sym_abstract] = ACTIONS(1238), - [anon_sym_final] = ACTIONS(1238), - [anon_sym_sealed] = ACTIONS(1238), - [anon_sym_implicit] = ACTIONS(1238), - [anon_sym_lazy] = ACTIONS(1238), - [anon_sym_override] = ACTIONS(1238), - [anon_sym_private] = ACTIONS(1238), - [anon_sym_protected] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_else] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), }, [1388] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1389] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_LF] = ACTIONS(2323), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), }, [1390] = { - [anon_sym_package] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_object] = ACTIONS(1282), - [anon_sym_class] = ACTIONS(1282), - [anon_sym_trait] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_val] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_var] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_abstract] = ACTIONS(1282), - [anon_sym_final] = ACTIONS(1282), - [anon_sym_sealed] = ACTIONS(1282), - [anon_sym_implicit] = ACTIONS(1282), - [anon_sym_lazy] = ACTIONS(1282), - [anon_sym_override] = ACTIONS(1282), - [anon_sym_private] = ACTIONS(1282), - [anon_sym_protected] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(826), + [sym__expression] = STATE(1573), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), }, [1391] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2325), + [sym_block] = STATE(826), + [sym__expression] = STATE(1574), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), [sym_comment] = ACTIONS(34), }, [1392] = { - [sym_type_arguments] = STATE(1296), - [sym_arguments] = STATE(1297), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_object] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_val] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(2073), - [anon_sym_var] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_def] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_sealed] = ACTIONS(1300), - [anon_sym_implicit] = ACTIONS(1300), - [anon_sym_lazy] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_protected] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2327), - [anon_sym_match] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2081), - [sym_operator_identifier] = ACTIONS(2081), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(1575), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(962), + [anon_sym_new] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [1393] = { - [anon_sym_package] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(1318), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_object] = ACTIONS(1318), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_trait] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_val] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_var] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_def] = ACTIONS(1318), - [anon_sym_abstract] = ACTIONS(1318), - [anon_sym_final] = ACTIONS(1318), - [anon_sym_sealed] = ACTIONS(1318), - [anon_sym_implicit] = ACTIONS(1318), - [anon_sym_lazy] = ACTIONS(1318), - [anon_sym_override] = ACTIONS(1318), - [anon_sym_private] = ACTIONS(1318), - [anon_sym_protected] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(826), + [sym__expression] = STATE(1386), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), }, [1394] = { - [aux_sym_parameter_types_repeat1] = STATE(1473), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2329), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(881), + [anon_sym_package] = ACTIONS(883), + [anon_sym_import] = ACTIONS(883), + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_case] = ACTIONS(883), + [anon_sym_object] = ACTIONS(883), + [anon_sym_class] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_val] = ACTIONS(883), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_var] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_def] = ACTIONS(883), + [anon_sym_abstract] = ACTIONS(883), + [anon_sym_final] = ACTIONS(883), + [anon_sym_sealed] = ACTIONS(883), + [anon_sym_implicit] = ACTIONS(883), + [anon_sym_lazy] = ACTIONS(883), + [anon_sym_override] = ACTIONS(883), + [anon_sym_private] = ACTIONS(883), + [anon_sym_protected] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_else] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), }, [1395] = { - [sym_type_arguments] = STATE(1296), - [sym_arguments] = STATE(1297), - [anon_sym_package] = ACTIONS(1326), - [anon_sym_import] = ACTIONS(1326), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_object] = ACTIONS(1326), - [anon_sym_class] = ACTIONS(1326), - [anon_sym_trait] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_val] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(2073), - [anon_sym_var] = ACTIONS(1326), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_def] = ACTIONS(1326), - [anon_sym_abstract] = ACTIONS(1326), - [anon_sym_final] = ACTIONS(1326), - [anon_sym_sealed] = ACTIONS(1326), - [anon_sym_implicit] = ACTIONS(1326), - [anon_sym_lazy] = ACTIONS(1326), - [anon_sym_override] = ACTIONS(1326), - [anon_sym_private] = ACTIONS(1326), - [anon_sym_protected] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(2081), - [sym_operator_identifier] = ACTIONS(2081), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1577), + [anon_sym_package] = ACTIONS(1805), + [anon_sym_import] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_case] = ACTIONS(1805), + [anon_sym_object] = ACTIONS(1805), + [anon_sym_class] = ACTIONS(1805), + [anon_sym_trait] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_val] = ACTIONS(1805), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_var] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_abstract] = ACTIONS(1805), + [anon_sym_final] = ACTIONS(1805), + [anon_sym_sealed] = ACTIONS(1805), + [anon_sym_implicit] = ACTIONS(1805), + [anon_sym_lazy] = ACTIONS(1805), + [anon_sym_override] = ACTIONS(1805), + [anon_sym_private] = ACTIONS(1805), + [anon_sym_protected] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), }, [1396] = { - [anon_sym_package] = ACTIONS(1330), - [anon_sym_import] = ACTIONS(1330), - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [anon_sym_class] = ACTIONS(1330), - [anon_sym_trait] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_val] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_var] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_def] = ACTIONS(1330), - [anon_sym_abstract] = ACTIONS(1330), - [anon_sym_final] = ACTIONS(1330), - [anon_sym_sealed] = ACTIONS(1330), - [anon_sym_implicit] = ACTIONS(1330), - [anon_sym_lazy] = ACTIONS(1330), - [anon_sym_override] = ACTIONS(1330), - [anon_sym_private] = ACTIONS(1330), - [anon_sym_protected] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1397] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1475), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1845), + [anon_sym_package] = ACTIONS(1847), + [anon_sym_import] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_case] = ACTIONS(1847), + [anon_sym_object] = ACTIONS(1847), + [anon_sym_class] = ACTIONS(1847), + [anon_sym_trait] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_val] = ACTIONS(1847), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_var] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_abstract] = ACTIONS(1847), + [anon_sym_final] = ACTIONS(1847), + [anon_sym_sealed] = ACTIONS(1847), + [anon_sym_implicit] = ACTIONS(1847), + [anon_sym_lazy] = ACTIONS(1847), + [anon_sym_override] = ACTIONS(1847), + [anon_sym_private] = ACTIONS(1847), + [anon_sym_protected] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), }, [1398] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(1950), - [anon_sym_import] = ACTIONS(1950), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_case] = ACTIONS(1950), - [anon_sym_object] = ACTIONS(1950), - [anon_sym_class] = ACTIONS(1950), - [anon_sym_trait] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(1950), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1950), - [anon_sym_type] = ACTIONS(1950), - [anon_sym_def] = ACTIONS(1950), - [anon_sym_abstract] = ACTIONS(1950), - [anon_sym_final] = ACTIONS(1950), - [anon_sym_sealed] = ACTIONS(1950), - [anon_sym_implicit] = ACTIONS(1950), - [anon_sym_lazy] = ACTIONS(1950), - [anon_sym_override] = ACTIONS(1950), - [anon_sym_private] = ACTIONS(1950), - [anon_sym_protected] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(579), + [sym__expression] = STATE(1577), + [sym_if_expression] = STATE(579), + [sym_match_expression] = STATE(579), + [sym_case_block] = STATE(579), + [sym_assignment_expression] = STATE(579), + [sym_generic_function] = STATE(579), + [sym_call_expression] = STATE(579), + [sym_field_expression] = STATE(579), + [sym_instance_expression] = STATE(579), + [sym_infix_expression] = STATE(579), + [sym_prefix_expression] = STATE(579), + [sym_tuple_expression] = STATE(579), + [sym_parenthesized_expression] = STATE(579), + [sym_string_transform_expression] = STATE(579), + [sym_string] = STATE(579), + [sym__simple_string] = ACTIONS(968), + [sym__string_start] = ACTIONS(970), + [sym__multiline_string_start] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_if] = ACTIONS(978), + [anon_sym_new] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [sym_number] = ACTIONS(986), + [sym_comment] = ACTIONS(34), }, [1399] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1477), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(1735), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1400] = { - [anon_sym_package] = ACTIONS(1342), - [anon_sym_import] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_object] = ACTIONS(1342), - [anon_sym_class] = ACTIONS(1342), - [anon_sym_trait] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_val] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_var] = ACTIONS(1342), - [anon_sym_type] = ACTIONS(1342), - [anon_sym_def] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_final] = ACTIONS(1342), - [anon_sym_sealed] = ACTIONS(1342), - [anon_sym_implicit] = ACTIONS(1342), - [anon_sym_lazy] = ACTIONS(1342), - [anon_sym_override] = ACTIONS(1342), - [anon_sym_private] = ACTIONS(1342), - [anon_sym_protected] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2473), + [sym_comment] = ACTIONS(34), }, [1401] = { - [sym_type_arguments] = STATE(1296), - [sym_arguments] = STATE(1297), - [anon_sym_package] = ACTIONS(1348), - [anon_sym_import] = ACTIONS(1348), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_object] = ACTIONS(1348), - [anon_sym_class] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_val] = ACTIONS(1348), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_var] = ACTIONS(1348), - [anon_sym_type] = ACTIONS(1348), - [anon_sym_def] = ACTIONS(1348), - [anon_sym_abstract] = ACTIONS(1348), - [anon_sym_final] = ACTIONS(1348), - [anon_sym_sealed] = ACTIONS(1348), - [anon_sym_implicit] = ACTIONS(1348), - [anon_sym_lazy] = ACTIONS(1348), - [anon_sym_override] = ACTIONS(1348), - [anon_sym_private] = ACTIONS(1348), - [anon_sym_protected] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1880), + [anon_sym_package] = ACTIONS(1882), + [anon_sym_import] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_object] = ACTIONS(1882), + [anon_sym_class] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_val] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_var] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_def] = ACTIONS(1882), + [anon_sym_abstract] = ACTIONS(1882), + [anon_sym_final] = ACTIONS(1882), + [anon_sym_sealed] = ACTIONS(1882), + [anon_sym_implicit] = ACTIONS(1882), + [anon_sym_lazy] = ACTIONS(1882), + [anon_sym_override] = ACTIONS(1882), + [anon_sym_private] = ACTIONS(1882), + [anon_sym_protected] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), }, [1402] = { - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2475), + [sym_comment] = ACTIONS(34), }, [1403] = { - [anon_sym_package] = ACTIONS(1956), - [anon_sym_import] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_case] = ACTIONS(1956), - [anon_sym_object] = ACTIONS(1956), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_val] = ACTIONS(1956), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_var] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_def] = ACTIONS(1956), - [anon_sym_abstract] = ACTIONS(1956), - [anon_sym_final] = ACTIONS(1956), - [anon_sym_sealed] = ACTIONS(1956), - [anon_sym_implicit] = ACTIONS(1956), - [anon_sym_lazy] = ACTIONS(1956), - [anon_sym_override] = ACTIONS(1956), - [anon_sym_private] = ACTIONS(1956), - [anon_sym_protected] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_match] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(1888), + [anon_sym_package] = ACTIONS(1890), + [anon_sym_import] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_object] = ACTIONS(1890), + [anon_sym_class] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_val] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_var] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_abstract] = ACTIONS(1890), + [anon_sym_final] = ACTIONS(1890), + [anon_sym_sealed] = ACTIONS(1890), + [anon_sym_implicit] = ACTIONS(1890), + [anon_sym_lazy] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), }, [1404] = { - [anon_sym_package] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_object] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_val] = ACTIONS(1968), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_def] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_final] = ACTIONS(1968), - [anon_sym_sealed] = ACTIONS(1968), - [anon_sym_implicit] = ACTIONS(1968), - [anon_sym_lazy] = ACTIONS(1968), - [anon_sym_override] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_protected] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LF] = ACTIONS(2477), + [sym_comment] = ACTIONS(464), }, [1405] = { - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [aux_sym_import_selectors_repeat1] = STATE(702), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(2479), + [sym_comment] = ACTIONS(34), }, [1406] = { - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LF] = ACTIONS(2481), + [sym_comment] = ACTIONS(464), }, [1407] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(2049), - [anon_sym_import] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_case] = ACTIONS(2049), - [anon_sym_object] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(2049), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(2049), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_final] = ACTIONS(2049), - [anon_sym_sealed] = ACTIONS(2049), - [anon_sym_implicit] = ACTIONS(2049), - [anon_sym_lazy] = ACTIONS(2049), - [anon_sym_override] = ACTIONS(2049), - [anon_sym_private] = ACTIONS(2049), - [anon_sym_protected] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(1581), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LF] = ACTIONS(2481), + [sym_comment] = ACTIONS(464), }, [1408] = { - [sym_block] = STATE(669), - [sym__expression] = STATE(1478), - [sym_if_expression] = STATE(669), - [sym_match_expression] = STATE(669), - [sym_assignment_expression] = STATE(669), - [sym_generic_function] = STATE(669), - [sym_call_expression] = STATE(669), - [sym_field_expression] = STATE(669), - [sym_instance_expression] = STATE(669), - [sym_infix_expression] = STATE(669), - [sym_prefix_expression] = STATE(669), - [sym_tuple_expression] = STATE(669), - [sym_parenthesized_expression] = STATE(669), - [sym_string_transform_expression] = STATE(669), - [sym_string] = STATE(669), - [sym__simple_string] = ACTIONS(1110), - [sym__string_start] = ACTIONS(1112), - [sym__multiline_string_start] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [sym_number] = ACTIONS(1128), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_COLON] = ACTIONS(2483), + [anon_sym_EQ] = ACTIONS(2483), + [anon_sym_extends] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_LF] = ACTIONS(2483), + [sym_comment] = ACTIONS(464), }, [1409] = { - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_RPAREN] = ACTIONS(1815), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1275), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [1410] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1622), - [sym_operator_identifier] = ACTIONS(1622), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1583), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2485), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1411] = { - [anon_sym_DOT] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_with] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_LF] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [1412] = { - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_COMMA] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_LF] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [1413] = { - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_with] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1926), + [sym_operator_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_LF] = ACTIONS(2487), + [sym_comment] = ACTIONS(464), }, [1414] = { - [sym_block] = STATE(753), - [sym__expression] = STATE(1479), - [sym_if_expression] = STATE(753), - [sym_match_expression] = STATE(753), - [sym_assignment_expression] = STATE(753), - [sym_generic_function] = STATE(753), - [sym_call_expression] = STATE(753), - [sym_field_expression] = STATE(753), - [sym_instance_expression] = STATE(753), - [sym_infix_expression] = STATE(753), - [sym_prefix_expression] = STATE(753), - [sym_tuple_expression] = STATE(753), - [sym_parenthesized_expression] = STATE(753), - [sym_string_transform_expression] = STATE(753), - [sym_string] = STATE(753), - [sym__simple_string] = ACTIONS(1256), - [sym__string_start] = ACTIONS(1258), - [sym__multiline_string_start] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1272), - [sym_number] = ACTIONS(1274), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_extends] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_LF] = ACTIONS(2489), + [sym_comment] = ACTIONS(464), }, [1415] = { - [aux_sym_string_repeat1] = STATE(1481), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2335), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_COLON] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [1416] = { - [aux_sym_string_repeat2] = STATE(1482), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2335), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(1585), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2491), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1417] = { - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(866), - [anon_sym_case] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_match] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_LF] = ACTIONS(2493), + [sym_comment] = ACTIONS(464), }, [1418] = { - [aux_sym_block_repeat1] = STATE(1485), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_LF] = ACTIONS(2339), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_COLON] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1293), + [anon_sym_with] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_LF] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [1419] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(1485), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_LF] = ACTIONS(2339), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_LF] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [1420] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1487), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_COLON] = ACTIONS(2487), + [anon_sym_EQ] = ACTIONS(2487), + [anon_sym_with] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(2487), + [sym_identifier] = ACTIONS(1950), + [sym_operator_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_LF] = ACTIONS(2487), + [sym_comment] = ACTIONS(464), }, [1421] = { - [sym_block] = STATE(1497), - [sym__expression] = STATE(1498), - [sym_if_expression] = STATE(1497), - [sym_match_expression] = STATE(1497), - [sym_assignment_expression] = STATE(1497), - [sym_generic_function] = STATE(1497), - [sym_call_expression] = STATE(1497), - [sym_field_expression] = STATE(1497), - [sym_instance_expression] = STATE(1497), - [sym_infix_expression] = STATE(1497), - [sym_prefix_expression] = STATE(1497), - [sym_tuple_expression] = STATE(1497), - [sym_parenthesized_expression] = STATE(1497), - [sym_string_transform_expression] = STATE(1497), - [sym_string] = STATE(1497), - [sym__simple_string] = ACTIONS(2343), - [sym__string_start] = ACTIONS(2345), - [sym__multiline_string_start] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [sym_number] = ACTIONS(2361), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_LF] = ACTIONS(2495), + [sym_comment] = ACTIONS(464), }, [1422] = { - [sym_type_arguments] = STATE(1431), - [sym_arguments] = STATE(1432), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1275), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [1423] = { - [sym_type_arguments] = STATE(1431), - [sym_arguments] = STATE(1432), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1587), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2497), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1424] = { - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_match] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_with] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_LF] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [1425] = { - [sym_identifier] = ACTIONS(2363), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_LF] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [1426] = { - [sym__type] = STATE(1500), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_with] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [sym_operator_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_LF] = ACTIONS(2487), + [sym_comment] = ACTIONS(464), }, [1427] = { - [sym_block] = STATE(1340), - [sym__expression] = STATE(1501), - [sym_if_expression] = STATE(1340), - [sym_match_expression] = STATE(1340), - [sym_assignment_expression] = STATE(1340), - [sym_generic_function] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_field_expression] = STATE(1340), - [sym_instance_expression] = STATE(1340), - [sym_infix_expression] = STATE(1340), - [sym_prefix_expression] = STATE(1340), - [sym_tuple_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_string_transform_expression] = STATE(1340), - [sym_string] = STATE(1340), - [sym__simple_string] = ACTIONS(2125), - [sym__string_start] = ACTIONS(2127), - [sym__multiline_string_start] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [sym_number] = ACTIONS(2143), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_LF] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), }, [1428] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1503), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1429] = { - [sym_case_block] = STATE(1505), - [anon_sym_LBRACE] = ACTIONS(2367), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1275), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LF] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [1430] = { - [sym_block] = STATE(1340), - [sym__expression] = STATE(1506), - [sym_if_expression] = STATE(1340), - [sym_match_expression] = STATE(1340), - [sym_assignment_expression] = STATE(1340), - [sym_generic_function] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_field_expression] = STATE(1340), - [sym_instance_expression] = STATE(1340), - [sym_infix_expression] = STATE(1340), - [sym_prefix_expression] = STATE(1340), - [sym_tuple_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_string_transform_expression] = STATE(1340), - [sym_string] = STATE(1340), - [sym__simple_string] = ACTIONS(2125), - [sym__string_start] = ACTIONS(2127), - [sym__multiline_string_start] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [sym_number] = ACTIONS(2143), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(1590), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2501), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1431] = { - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_match] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_LF] = ACTIONS(2503), + [sym_comment] = ACTIONS(464), }, [1432] = { - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_match] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1293), + [anon_sym_with] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_LF] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [1433] = { - [sym_identifier] = ACTIONS(2369), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_LF] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [1434] = { - [sym__type] = STATE(1508), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_EQ] = ACTIONS(2487), + [anon_sym_with] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [sym_operator_identifier] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_LF] = ACTIONS(2487), + [sym_comment] = ACTIONS(464), }, [1435] = { - [anon_sym_EQ_GT] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [sym_identifier] = ACTIONS(795), - [sym_operator_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_COLON] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_LF] = ACTIONS(2505), + [sym_comment] = ACTIONS(464), }, [1436] = { - [sym__type] = STATE(1509), - [sym_compound_type] = STATE(1344), - [sym_infix_type] = STATE(1344), - [sym_stable_type_identifier] = STATE(1345), - [sym_stable_identifier] = STATE(1346), - [sym_generic_type] = STATE(1344), - [sym_function_type] = STATE(1344), - [sym_parameter_types] = STATE(1347), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(2145), + [sym_block] = STATE(213), + [sym__expression] = STATE(1591), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1437] = { - [sym__type] = STATE(1510), - [sym_compound_type] = STATE(1344), - [sym_infix_type] = STATE(1344), - [sym_stable_type_identifier] = STATE(1345), - [sym_stable_identifier] = STATE(1346), - [sym_generic_type] = STATE(1344), - [sym_function_type] = STATE(1344), - [sym_parameter_types] = STATE(1347), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(2145), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_LF] = ACTIONS(2503), + [sym_comment] = ACTIONS(464), }, [1438] = { - [anon_sym_EQ_GT] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(799), - [anon_sym_with] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(799), - [anon_sym_if] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_operator_identifier] = ACTIONS(801), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1593), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [sym_operator_identifier] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_LF] = ACTIONS(2507), + [sym_comment] = ACTIONS(464), }, [1439] = { - [sym__type] = STATE(1511), - [sym_compound_type] = STATE(1344), - [sym_infix_type] = STATE(1344), - [sym_stable_type_identifier] = STATE(1345), - [sym_stable_identifier] = STATE(1346), - [sym_generic_type] = STATE(1344), - [sym_function_type] = STATE(1344), - [sym_parameter_types] = STATE(1347), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(2145), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_else] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_LF] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), }, [1440] = { - [aux_sym_string_repeat1] = STATE(1513), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2371), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_EQ] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_LF] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), }, [1441] = { - [aux_sym_string_repeat2] = STATE(1514), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2371), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1442] = { - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_EQ_GT] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_match] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_else] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), }, [1443] = { - [aux_sym_block_repeat1] = STATE(1517), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_LF] = ACTIONS(2375), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(654), + [sym__expression] = STATE(1595), + [sym_if_expression] = STATE(654), + [sym_match_expression] = STATE(654), + [sym_case_block] = STATE(654), + [sym_assignment_expression] = STATE(654), + [sym_generic_function] = STATE(654), + [sym_call_expression] = STATE(654), + [sym_field_expression] = STATE(654), + [sym_instance_expression] = STATE(654), + [sym_infix_expression] = STATE(654), + [sym_prefix_expression] = STATE(654), + [sym_tuple_expression] = STATE(654), + [sym_parenthesized_expression] = STATE(654), + [sym_string_transform_expression] = STATE(654), + [sym_string] = STATE(654), + [sym__simple_string] = ACTIONS(1110), + [sym__string_start] = ACTIONS(1112), + [sym__multiline_string_start] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [sym_number] = ACTIONS(1128), + [sym_comment] = ACTIONS(34), }, [1444] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(1517), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_LF] = ACTIONS(2375), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_EQ] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_LF] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1445] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1519), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2377), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2513), + [sym_comment] = ACTIONS(34), }, [1446] = { - [sym_block] = STATE(1529), - [sym__expression] = STATE(1530), - [sym_if_expression] = STATE(1529), - [sym_match_expression] = STATE(1529), - [sym_assignment_expression] = STATE(1529), - [sym_generic_function] = STATE(1529), - [sym_call_expression] = STATE(1529), - [sym_field_expression] = STATE(1529), - [sym_instance_expression] = STATE(1529), - [sym_infix_expression] = STATE(1529), - [sym_prefix_expression] = STATE(1529), - [sym_tuple_expression] = STATE(1529), - [sym_parenthesized_expression] = STATE(1529), - [sym_string_transform_expression] = STATE(1529), - [sym_string] = STATE(1529), - [sym__simple_string] = ACTIONS(2379), - [sym__string_start] = ACTIONS(2381), - [sym__multiline_string_start] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [sym_identifier] = ACTIONS(2395), - [sym_number] = ACTIONS(2397), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1884), + [anon_sym_match] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), }, [1447] = { - [sym_type_arguments] = STATE(1456), - [sym_arguments] = STATE(1457), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_EQ_GT] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2515), + [sym_comment] = ACTIONS(34), }, [1448] = { - [sym_type_arguments] = STATE(1456), - [sym_arguments] = STATE(1457), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1892), + [anon_sym_match] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), }, [1449] = { - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_EQ_GT] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_match] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(1581), + [sym_extends_clause] = STATE(1598), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_extends] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LF] = ACTIONS(2481), + [sym_comment] = ACTIONS(464), }, [1450] = { - [sym_identifier] = ACTIONS(2399), + [sym_block] = STATE(213), + [sym__expression] = STATE(1599), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1451] = { - [sym__type] = STATE(1532), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_with] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [sym_operator_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_LF] = ACTIONS(2517), + [sym_comment] = ACTIONS(464), }, [1452] = { - [sym_block] = STATE(1357), - [sym__expression] = STATE(1533), - [sym_if_expression] = STATE(1357), - [sym_match_expression] = STATE(1357), - [sym_assignment_expression] = STATE(1357), - [sym_generic_function] = STATE(1357), - [sym_call_expression] = STATE(1357), - [sym_field_expression] = STATE(1357), - [sym_instance_expression] = STATE(1357), - [sym_infix_expression] = STATE(1357), - [sym_prefix_expression] = STATE(1357), - [sym_tuple_expression] = STATE(1357), - [sym_parenthesized_expression] = STATE(1357), - [sym_string_transform_expression] = STATE(1357), - [sym_string] = STATE(1357), - [sym__simple_string] = ACTIONS(2147), - [sym__string_start] = ACTIONS(2149), - [sym__multiline_string_start] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [sym_number] = ACTIONS(2165), + [sym_block] = STATE(213), + [sym__expression] = STATE(1600), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1453] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1535), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_with] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [sym_operator_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_LF] = ACTIONS(2519), + [sym_comment] = ACTIONS(464), }, [1454] = { - [sym_case_block] = STATE(1537), - [anon_sym_LBRACE] = ACTIONS(2403), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_with] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [sym_operator_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_LF] = ACTIONS(2521), + [sym_comment] = ACTIONS(464), }, [1455] = { - [sym_block] = STATE(1357), - [sym__expression] = STATE(1538), - [sym_if_expression] = STATE(1357), - [sym_match_expression] = STATE(1357), - [sym_assignment_expression] = STATE(1357), - [sym_generic_function] = STATE(1357), - [sym_call_expression] = STATE(1357), - [sym_field_expression] = STATE(1357), - [sym_instance_expression] = STATE(1357), - [sym_infix_expression] = STATE(1357), - [sym_prefix_expression] = STATE(1357), - [sym_tuple_expression] = STATE(1357), - [sym_parenthesized_expression] = STATE(1357), - [sym_string_transform_expression] = STATE(1357), - [sym_string] = STATE(1357), - [sym__simple_string] = ACTIONS(2147), - [sym__string_start] = ACTIONS(2149), - [sym__multiline_string_start] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [sym_number] = ACTIONS(2165), + [sym__type] = STATE(1601), + [sym_compound_type] = STATE(923), + [sym_infix_type] = STATE(923), + [sym_stable_type_identifier] = STATE(924), + [sym_stable_identifier] = STATE(925), + [sym_generic_type] = STATE(923), + [sym_function_type] = STATE(923), + [sym_parameter_types] = STATE(926), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(1545), [sym_comment] = ACTIONS(34), }, [1456] = { - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_match] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(353), + [sym_arguments] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(2523), + [anon_sym_package] = ACTIONS(2525), + [anon_sym_import] = ACTIONS(2525), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_case] = ACTIONS(2525), + [anon_sym_object] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_val] = ACTIONS(2525), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_var] = ACTIONS(2525), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_def] = ACTIONS(2525), + [anon_sym_abstract] = ACTIONS(2525), + [anon_sym_final] = ACTIONS(2525), + [anon_sym_sealed] = ACTIONS(2525), + [anon_sym_implicit] = ACTIONS(2525), + [anon_sym_lazy] = ACTIONS(2525), + [anon_sym_override] = ACTIONS(2525), + [anon_sym_private] = ACTIONS(2525), + [anon_sym_protected] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_match] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [sym_operator_identifier] = ACTIONS(602), + [sym_comment] = ACTIONS(464), }, [1457] = { - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_EQ_GT] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_match] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1458] = { - [sym_type_arguments] = STATE(1431), - [sym_arguments] = STATE(1432), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_EQ] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2269), - [sym_identifier] = ACTIONS(2271), - [sym_operator_identifier] = ACTIONS(2271), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2527), + [sym_comment] = ACTIONS(34), }, [1459] = { - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_COLON] = ACTIONS(1737), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1460] = { - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2529), + [sym_comment] = ACTIONS(34), }, [1461] = { - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(883), + [anon_sym_import] = ACTIONS(883), + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_case] = ACTIONS(883), + [anon_sym_object] = ACTIONS(883), + [anon_sym_class] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_val] = ACTIONS(883), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_var] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_def] = ACTIONS(883), + [anon_sym_abstract] = ACTIONS(883), + [anon_sym_final] = ACTIONS(883), + [anon_sym_sealed] = ACTIONS(883), + [anon_sym_implicit] = ACTIONS(883), + [anon_sym_lazy] = ACTIONS(883), + [anon_sym_override] = ACTIONS(883), + [anon_sym_private] = ACTIONS(883), + [anon_sym_protected] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_match] = ACTIONS(883), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), }, [1462] = { - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1805), + [anon_sym_import] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_case] = ACTIONS(1805), + [anon_sym_object] = ACTIONS(1805), + [anon_sym_class] = ACTIONS(1805), + [anon_sym_trait] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_val] = ACTIONS(1805), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_var] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_abstract] = ACTIONS(1805), + [anon_sym_final] = ACTIONS(1805), + [anon_sym_sealed] = ACTIONS(1805), + [anon_sym_implicit] = ACTIONS(1805), + [anon_sym_lazy] = ACTIONS(1805), + [anon_sym_override] = ACTIONS(1805), + [anon_sym_private] = ACTIONS(1805), + [anon_sym_protected] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_match] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), }, [1463] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_LF] = ACTIONS(2407), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1464] = { - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_SEMI] = ACTIONS(2409), - [anon_sym_LF] = ACTIONS(2409), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1847), + [anon_sym_import] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_case] = ACTIONS(1847), + [anon_sym_object] = ACTIONS(1847), + [anon_sym_class] = ACTIONS(1847), + [anon_sym_trait] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_val] = ACTIONS(1847), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_var] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_abstract] = ACTIONS(1847), + [anon_sym_final] = ACTIONS(1847), + [anon_sym_sealed] = ACTIONS(1847), + [anon_sym_implicit] = ACTIONS(1847), + [anon_sym_lazy] = ACTIONS(1847), + [anon_sym_override] = ACTIONS(1847), + [anon_sym_private] = ACTIONS(1847), + [anon_sym_protected] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), }, [1465] = { - [sym_block] = STATE(207), - [sym__expression] = STATE(1539), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [aux_sym_string_repeat1] = STATE(1606), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2533), [sym_comment] = ACTIONS(34), }, [1466] = { - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_LF] = ACTIONS(2407), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(1607), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2533), + [sym_comment] = ACTIONS(34), }, [1467] = { - [anon_sym_package] = ACTIONS(827), - [anon_sym_import] = ACTIONS(827), - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_case] = ACTIONS(827), - [anon_sym_object] = ACTIONS(827), - [anon_sym_class] = ACTIONS(827), - [anon_sym_trait] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_val] = ACTIONS(827), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_type] = ACTIONS(827), - [anon_sym_def] = ACTIONS(827), - [anon_sym_abstract] = ACTIONS(827), - [anon_sym_final] = ACTIONS(827), - [anon_sym_sealed] = ACTIONS(827), - [anon_sym_implicit] = ACTIONS(827), - [anon_sym_lazy] = ACTIONS(827), - [anon_sym_override] = ACTIONS(827), - [anon_sym_private] = ACTIONS(827), - [anon_sym_protected] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_else] = ACTIONS(827), - [anon_sym_match] = ACTIONS(827), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(922), + [anon_sym_import] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_object] = ACTIONS(922), + [anon_sym_class] = ACTIONS(922), + [anon_sym_trait] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_val] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_var] = ACTIONS(922), + [anon_sym_type] = ACTIONS(922), + [anon_sym_def] = ACTIONS(922), + [anon_sym_abstract] = ACTIONS(922), + [anon_sym_final] = ACTIONS(922), + [anon_sym_sealed] = ACTIONS(922), + [anon_sym_implicit] = ACTIONS(922), + [anon_sym_lazy] = ACTIONS(922), + [anon_sym_override] = ACTIONS(922), + [anon_sym_private] = ACTIONS(922), + [anon_sym_protected] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_else] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [1468] = { - [anon_sym_package] = ACTIONS(1592), - [anon_sym_import] = ACTIONS(1592), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_case] = ACTIONS(1592), - [anon_sym_object] = ACTIONS(1592), - [anon_sym_class] = ACTIONS(1592), - [anon_sym_trait] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_val] = ACTIONS(1592), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_def] = ACTIONS(1592), - [anon_sym_abstract] = ACTIONS(1592), - [anon_sym_final] = ACTIONS(1592), - [anon_sym_sealed] = ACTIONS(1592), - [anon_sym_implicit] = ACTIONS(1592), - [anon_sym_lazy] = ACTIONS(1592), - [anon_sym_override] = ACTIONS(1592), - [anon_sym_private] = ACTIONS(1592), - [anon_sym_protected] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1592), - [anon_sym_match] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(1610), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_LF] = ACTIONS(2537), + [sym_comment] = ACTIONS(464), }, [1469] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(1610), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_LF] = ACTIONS(2537), + [sym_comment] = ACTIONS(464), }, [1470] = { - [anon_sym_package] = ACTIONS(1634), - [anon_sym_import] = ACTIONS(1634), - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_object] = ACTIONS(1634), - [anon_sym_class] = ACTIONS(1634), - [anon_sym_trait] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_val] = ACTIONS(1634), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_var] = ACTIONS(1634), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_def] = ACTIONS(1634), - [anon_sym_abstract] = ACTIONS(1634), - [anon_sym_final] = ACTIONS(1634), - [anon_sym_sealed] = ACTIONS(1634), - [anon_sym_implicit] = ACTIONS(1634), - [anon_sym_lazy] = ACTIONS(1634), - [anon_sym_override] = ACTIONS(1634), - [anon_sym_private] = ACTIONS(1634), - [anon_sym_protected] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_else] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [1471] = { - [sym_block] = STATE(1150), - [sym__expression] = STATE(1541), - [sym_if_expression] = STATE(1150), - [sym_match_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1150), - [sym_generic_function] = STATE(1150), - [sym_call_expression] = STATE(1150), - [sym_field_expression] = STATE(1150), - [sym_instance_expression] = STATE(1150), - [sym_infix_expression] = STATE(1150), - [sym_prefix_expression] = STATE(1150), - [sym_tuple_expression] = STATE(1150), - [sym_parenthesized_expression] = STATE(1150), - [sym_string_transform_expression] = STATE(1150), - [sym_string] = STATE(1150), - [sym__simple_string] = ACTIONS(1847), - [sym__string_start] = ACTIONS(1849), - [sym__multiline_string_start] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [sym_number] = ACTIONS(1865), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1613), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1472] = { - [anon_sym_package] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1568), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_object] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_val] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_def] = ACTIONS(1568), - [anon_sym_abstract] = ACTIONS(1568), - [anon_sym_final] = ACTIONS(1568), - [anon_sym_sealed] = ACTIONS(1568), - [anon_sym_implicit] = ACTIONS(1568), - [anon_sym_lazy] = ACTIONS(1568), - [anon_sym_override] = ACTIONS(1568), - [anon_sym_private] = ACTIONS(1568), - [anon_sym_protected] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_else] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1284), + [sym__expression] = STATE(1614), + [sym_if_expression] = STATE(1284), + [sym_match_expression] = STATE(1284), + [sym_case_block] = STATE(1284), + [sym_assignment_expression] = STATE(1284), + [sym_generic_function] = STATE(1284), + [sym_call_expression] = STATE(1284), + [sym_field_expression] = STATE(1284), + [sym_instance_expression] = STATE(1284), + [sym_infix_expression] = STATE(1284), + [sym_prefix_expression] = STATE(1284), + [sym_tuple_expression] = STATE(1284), + [sym_parenthesized_expression] = STATE(1284), + [sym_string_transform_expression] = STATE(1284), + [sym_string] = STATE(1284), + [sym__simple_string] = ACTIONS(2074), + [sym__string_start] = ACTIONS(2076), + [sym__multiline_string_start] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_new] = ACTIONS(2086), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [sym_number] = ACTIONS(2092), + [sym_comment] = ACTIONS(34), }, [1473] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2413), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1483), + [sym_arguments] = STATE(1484), + [anon_sym_package] = ACTIONS(990), + [anon_sym_import] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_case] = ACTIONS(990), + [anon_sym_object] = ACTIONS(990), + [anon_sym_class] = ACTIONS(990), + [anon_sym_trait] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_val] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_var] = ACTIONS(990), + [anon_sym_type] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_abstract] = ACTIONS(990), + [anon_sym_final] = ACTIONS(990), + [anon_sym_sealed] = ACTIONS(990), + [anon_sym_implicit] = ACTIONS(990), + [anon_sym_lazy] = ACTIONS(990), + [anon_sym_override] = ACTIONS(990), + [anon_sym_private] = ACTIONS(990), + [anon_sym_protected] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [1474] = { - [anon_sym_package] = ACTIONS(1665), - [anon_sym_import] = ACTIONS(1665), - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_case] = ACTIONS(1665), - [anon_sym_object] = ACTIONS(1665), - [anon_sym_class] = ACTIONS(1665), - [anon_sym_trait] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_val] = ACTIONS(1665), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_var] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_def] = ACTIONS(1665), - [anon_sym_abstract] = ACTIONS(1665), - [anon_sym_final] = ACTIONS(1665), - [anon_sym_sealed] = ACTIONS(1665), - [anon_sym_implicit] = ACTIONS(1665), - [anon_sym_lazy] = ACTIONS(1665), - [anon_sym_override] = ACTIONS(1665), - [anon_sym_private] = ACTIONS(1665), - [anon_sym_protected] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1483), + [sym_arguments] = STATE(1484), + [anon_sym_package] = ACTIONS(996), + [anon_sym_import] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_object] = ACTIONS(996), + [anon_sym_class] = ACTIONS(996), + [anon_sym_trait] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_val] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_var] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_def] = ACTIONS(996), + [anon_sym_abstract] = ACTIONS(996), + [anon_sym_final] = ACTIONS(996), + [anon_sym_sealed] = ACTIONS(996), + [anon_sym_implicit] = ACTIONS(996), + [anon_sym_lazy] = ACTIONS(996), + [anon_sym_override] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [1475] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2415), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1002), + [anon_sym_import] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_case] = ACTIONS(1002), + [anon_sym_object] = ACTIONS(1002), + [anon_sym_class] = ACTIONS(1002), + [anon_sym_trait] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_val] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_var] = ACTIONS(1002), + [anon_sym_type] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_abstract] = ACTIONS(1002), + [anon_sym_final] = ACTIONS(1002), + [anon_sym_sealed] = ACTIONS(1002), + [anon_sym_implicit] = ACTIONS(1002), + [anon_sym_lazy] = ACTIONS(1002), + [anon_sym_override] = ACTIONS(1002), + [anon_sym_private] = ACTIONS(1002), + [anon_sym_protected] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [1476] = { - [anon_sym_package] = ACTIONS(1673), - [anon_sym_import] = ACTIONS(1673), - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_object] = ACTIONS(1673), - [anon_sym_class] = ACTIONS(1673), - [anon_sym_trait] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_val] = ACTIONS(1673), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_var] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_def] = ACTIONS(1673), - [anon_sym_abstract] = ACTIONS(1673), - [anon_sym_final] = ACTIONS(1673), - [anon_sym_sealed] = ACTIONS(1673), - [anon_sym_implicit] = ACTIONS(1673), - [anon_sym_lazy] = ACTIONS(1673), - [anon_sym_override] = ACTIONS(1673), - [anon_sym_private] = ACTIONS(1673), - [anon_sym_protected] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2543), + [sym_comment] = ACTIONS(34), }, [1477] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_case] = ACTIONS(1338), + [sym__type] = STATE(1616), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), [sym_comment] = ACTIONS(34), }, [1478] = { - [sym_type_arguments] = STATE(932), - [sym_arguments] = STATE(933), - [anon_sym_package] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_val] = ACTIONS(2213), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_def] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_final] = ACTIONS(2213), - [anon_sym_sealed] = ACTIONS(2213), - [anon_sym_implicit] = ACTIONS(2213), - [anon_sym_lazy] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [sym_operator_identifier] = ACTIONS(1527), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1284), + [sym__expression] = STATE(1617), + [sym_if_expression] = STATE(1284), + [sym_match_expression] = STATE(1284), + [sym_case_block] = STATE(1284), + [sym_assignment_expression] = STATE(1284), + [sym_generic_function] = STATE(1284), + [sym_call_expression] = STATE(1284), + [sym_field_expression] = STATE(1284), + [sym_instance_expression] = STATE(1284), + [sym_infix_expression] = STATE(1284), + [sym_prefix_expression] = STATE(1284), + [sym_tuple_expression] = STATE(1284), + [sym_parenthesized_expression] = STATE(1284), + [sym_string_transform_expression] = STATE(1284), + [sym_string] = STATE(1284), + [sym__simple_string] = ACTIONS(2074), + [sym__string_start] = ACTIONS(2076), + [sym__multiline_string_start] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_new] = ACTIONS(2086), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [sym_number] = ACTIONS(2092), + [sym_comment] = ACTIONS(34), }, [1479] = { - [sym_type_arguments] = STATE(999), - [sym_arguments] = STATE(1000), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1930), - [sym_operator_identifier] = ACTIONS(1930), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(1619), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [1480] = { - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_case] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_match] = ACTIONS(482), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(727), + [sym__expression] = STATE(1620), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), + [sym_comment] = ACTIONS(34), }, [1481] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2419), + [sym_case_block] = STATE(1622), + [anon_sym_LBRACE] = ACTIONS(2547), [sym_comment] = ACTIONS(34), }, [1482] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2419), + [sym_block] = STATE(1284), + [sym__expression] = STATE(1623), + [sym_if_expression] = STATE(1284), + [sym_match_expression] = STATE(1284), + [sym_case_block] = STATE(1284), + [sym_assignment_expression] = STATE(1284), + [sym_generic_function] = STATE(1284), + [sym_call_expression] = STATE(1284), + [sym_field_expression] = STATE(1284), + [sym_instance_expression] = STATE(1284), + [sym_infix_expression] = STATE(1284), + [sym_prefix_expression] = STATE(1284), + [sym_tuple_expression] = STATE(1284), + [sym_parenthesized_expression] = STATE(1284), + [sym_string_transform_expression] = STATE(1284), + [sym_string] = STATE(1284), + [sym__simple_string] = ACTIONS(2074), + [sym__string_start] = ACTIONS(2076), + [sym__multiline_string_start] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_new] = ACTIONS(2086), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [sym_number] = ACTIONS(2092), [sym_comment] = ACTIONS(34), }, [1483] = { - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1014), + [anon_sym_import] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_object] = ACTIONS(1014), + [anon_sym_class] = ACTIONS(1014), + [anon_sym_trait] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_val] = ACTIONS(1014), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_var] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_abstract] = ACTIONS(1014), + [anon_sym_final] = ACTIONS(1014), + [anon_sym_sealed] = ACTIONS(1014), + [anon_sym_implicit] = ACTIONS(1014), + [anon_sym_lazy] = ACTIONS(1014), + [anon_sym_override] = ACTIONS(1014), + [anon_sym_private] = ACTIONS(1014), + [anon_sym_protected] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [1484] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(1624), + [sym_case_block] = STATE(1624), + [anon_sym_package] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_object] = ACTIONS(1020), + [anon_sym_class] = ACTIONS(1020), + [anon_sym_trait] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_val] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_var] = ACTIONS(1020), + [anon_sym_type] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1020), + [anon_sym_abstract] = ACTIONS(1020), + [anon_sym_final] = ACTIONS(1020), + [anon_sym_sealed] = ACTIONS(1020), + [anon_sym_implicit] = ACTIONS(1020), + [anon_sym_lazy] = ACTIONS(1020), + [anon_sym_override] = ACTIONS(1020), + [anon_sym_private] = ACTIONS(1020), + [anon_sym_protected] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [1485] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2425), - [anon_sym_LF] = ACTIONS(2425), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1486] = { - [anon_sym_DOT] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2551), + [sym_comment] = ACTIONS(34), }, [1487] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2427), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1882), + [anon_sym_import] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_object] = ACTIONS(1882), + [anon_sym_class] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_val] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_var] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_def] = ACTIONS(1882), + [anon_sym_abstract] = ACTIONS(1882), + [anon_sym_final] = ACTIONS(1882), + [anon_sym_sealed] = ACTIONS(1882), + [anon_sym_implicit] = ACTIONS(1882), + [anon_sym_lazy] = ACTIONS(1882), + [anon_sym_override] = ACTIONS(1882), + [anon_sym_private] = ACTIONS(1882), + [anon_sym_protected] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), }, [1488] = { - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_RBRACE] = ACTIONS(112), - [anon_sym_case] = ACTIONS(112), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_else] = ACTIONS(112), - [anon_sym_match] = ACTIONS(112), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2553), + [sym_comment] = ACTIONS(34), }, [1489] = { - [sym_interpolation] = STATE(1549), - [anon_sym_DOLLAR] = ACTIONS(114), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1890), + [anon_sym_import] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_object] = ACTIONS(1890), + [anon_sym_class] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_val] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_var] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_abstract] = ACTIONS(1890), + [anon_sym_final] = ACTIONS(1890), + [anon_sym_sealed] = ACTIONS(1890), + [anon_sym_implicit] = ACTIONS(1890), + [anon_sym_lazy] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), }, [1490] = { - [sym_interpolation] = STATE(1550), - [anon_sym_DOLLAR] = ACTIONS(116), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1491] = { - [sym_package_clause] = STATE(1552), - [sym_import_declaration] = STATE(1552), - [sym_object_definition] = STATE(1552), - [sym_class_definition] = STATE(1552), - [sym_trait_definition] = STATE(1552), - [sym_val_definition] = STATE(1552), - [sym_val_declaration] = STATE(1552), - [sym_var_declaration] = STATE(1552), - [sym_var_definition] = STATE(1552), - [sym_type_definition] = STATE(1552), - [sym_function_definition] = STATE(1552), - [sym_function_declaration] = STATE(1552), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(1553), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2555), [sym_comment] = ACTIONS(34), }, [1492] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1554), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1493] = { - [sym_parenthesized_expression] = STATE(1555), - [anon_sym_LPAREN] = ACTIONS(546), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2557), [sym_comment] = ACTIONS(34), }, [1494] = { - [sym_block] = STATE(1497), - [sym__expression] = STATE(1556), - [sym_if_expression] = STATE(1497), - [sym_match_expression] = STATE(1497), - [sym_assignment_expression] = STATE(1497), - [sym_generic_function] = STATE(1497), - [sym_call_expression] = STATE(1497), - [sym_field_expression] = STATE(1497), - [sym_instance_expression] = STATE(1497), - [sym_infix_expression] = STATE(1497), - [sym_prefix_expression] = STATE(1497), - [sym_tuple_expression] = STATE(1497), - [sym_parenthesized_expression] = STATE(1497), - [sym_string_transform_expression] = STATE(1497), - [sym_string] = STATE(1497), - [sym__simple_string] = ACTIONS(2343), - [sym__string_start] = ACTIONS(2345), - [sym__multiline_string_start] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [sym_number] = ACTIONS(2361), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(2044), + [anon_sym_import] = ACTIONS(2044), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_object] = ACTIONS(2044), + [anon_sym_class] = ACTIONS(2044), + [anon_sym_trait] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(2044), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(2044), + [anon_sym_type] = ACTIONS(2044), + [anon_sym_def] = ACTIONS(2044), + [anon_sym_abstract] = ACTIONS(2044), + [anon_sym_final] = ACTIONS(2044), + [anon_sym_sealed] = ACTIONS(2044), + [anon_sym_implicit] = ACTIONS(2044), + [anon_sym_lazy] = ACTIONS(2044), + [anon_sym_override] = ACTIONS(2044), + [anon_sym_private] = ACTIONS(2044), + [anon_sym_protected] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1495] = { - [sym_block] = STATE(1497), - [sym__expression] = STATE(1557), - [sym_if_expression] = STATE(1497), - [sym_match_expression] = STATE(1497), - [sym_assignment_expression] = STATE(1497), - [sym_generic_function] = STATE(1497), - [sym_call_expression] = STATE(1497), - [sym_field_expression] = STATE(1497), - [sym_instance_expression] = STATE(1497), - [sym_infix_expression] = STATE(1497), - [sym_prefix_expression] = STATE(1497), - [sym_tuple_expression] = STATE(1497), - [sym_parenthesized_expression] = STATE(1497), - [sym_string_transform_expression] = STATE(1497), - [sym_string] = STATE(1497), - [sym__simple_string] = ACTIONS(2343), - [sym__string_start] = ACTIONS(2345), - [sym__multiline_string_start] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [sym_number] = ACTIONS(2361), + [sym_block] = STATE(727), + [sym__expression] = STATE(1629), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [1496] = { - [sym_string] = STATE(1558), - [sym__simple_string] = ACTIONS(2343), - [sym__string_start] = ACTIONS(2345), - [sym__multiline_string_start] = ACTIONS(2347), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_case] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(2048), + [anon_sym_import] = ACTIONS(2048), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_case] = ACTIONS(2048), + [anon_sym_object] = ACTIONS(2048), + [anon_sym_class] = ACTIONS(2048), + [anon_sym_trait] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(2048), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(2048), + [anon_sym_type] = ACTIONS(2048), + [anon_sym_def] = ACTIONS(2048), + [anon_sym_abstract] = ACTIONS(2048), + [anon_sym_final] = ACTIONS(2048), + [anon_sym_sealed] = ACTIONS(2048), + [anon_sym_implicit] = ACTIONS(2048), + [anon_sym_lazy] = ACTIONS(2048), + [anon_sym_override] = ACTIONS(2048), + [anon_sym_private] = ACTIONS(2048), + [anon_sym_protected] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1497] = { - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_case] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(2052), + [anon_sym_import] = ACTIONS(2052), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_object] = ACTIONS(2052), + [anon_sym_class] = ACTIONS(2052), + [anon_sym_trait] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(2052), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_def] = ACTIONS(2052), + [anon_sym_abstract] = ACTIONS(2052), + [anon_sym_final] = ACTIONS(2052), + [anon_sym_sealed] = ACTIONS(2052), + [anon_sym_implicit] = ACTIONS(2052), + [anon_sym_lazy] = ACTIONS(2052), + [anon_sym_override] = ACTIONS(2052), + [anon_sym_private] = ACTIONS(2052), + [anon_sym_protected] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1498] = { - [sym_type_arguments] = STATE(1566), - [sym_arguments] = STATE(1567), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2441), - [sym_identifier] = ACTIONS(2443), - [sym_operator_identifier] = ACTIONS(2443), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1254), + [anon_sym_package] = ACTIONS(2056), + [anon_sym_import] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_case] = ACTIONS(2056), + [anon_sym_object] = ACTIONS(2056), + [anon_sym_class] = ACTIONS(2056), + [anon_sym_trait] = ACTIONS(2056), + [anon_sym_val] = ACTIONS(2056), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_var] = ACTIONS(2056), + [anon_sym_type] = ACTIONS(2056), + [anon_sym_def] = ACTIONS(2056), + [anon_sym_abstract] = ACTIONS(2056), + [anon_sym_final] = ACTIONS(2056), + [anon_sym_sealed] = ACTIONS(2056), + [anon_sym_implicit] = ACTIONS(2056), + [anon_sym_lazy] = ACTIONS(2056), + [anon_sym_override] = ACTIONS(2056), + [anon_sym_private] = ACTIONS(2056), + [anon_sym_protected] = ACTIONS(2056), + [anon_sym_with] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [sym_operator_identifier] = ACTIONS(1712), + [sym_comment] = ACTIONS(464), }, [1499] = { - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(2118), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_with] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1500] = { - [aux_sym_parameter_types_repeat1] = STATE(1569), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2445), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_case] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_match] = ACTIONS(514), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), }, [1501] = { - [sym_type_arguments] = STATE(1431), - [sym_arguments] = STATE(1432), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_EQ] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(2271), - [sym_operator_identifier] = ACTIONS(2271), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2561), + [sym_comment] = ACTIONS(34), }, [1502] = { - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2561), + [sym_comment] = ACTIONS(34), }, [1503] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1571), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), }, [1504] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1573), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_case] = ACTIONS(1338), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1505] = { - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_LF] = ACTIONS(2567), + [sym_comment] = ACTIONS(464), }, [1506] = { - [sym_type_arguments] = STATE(1431), - [sym_arguments] = STATE(1432), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), }, [1507] = { - [anon_sym_DOT] = ACTIONS(378), - [anon_sym_EQ_GT] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_COLON] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_operator_identifier] = ACTIONS(1161), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), }, [1508] = { - [aux_sym_parameter_types_repeat1] = STATE(1575), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2451), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2569), + [sym_comment] = ACTIONS(34), }, [1509] = { - [anon_sym_EQ_GT] = ACTIONS(1177), - [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [sym_operator_identifier] = ACTIONS(1179), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_RBRACE] = ACTIONS(116), + [anon_sym_case] = ACTIONS(116), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_else] = ACTIONS(116), + [anon_sym_match] = ACTIONS(116), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [1510] = { - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_COLON] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1185), - [sym_operator_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1635), + [anon_sym_DOLLAR] = ACTIONS(118), + [sym_comment] = ACTIONS(34), }, [1511] = { - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_COLON] = ACTIONS(1189), - [anon_sym_with] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [sym_identifier] = ACTIONS(2279), - [sym_operator_identifier] = ACTIONS(2279), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1636), + [anon_sym_DOLLAR] = ACTIONS(120), + [sym_comment] = ACTIONS(34), }, [1512] = { - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_EQ_GT] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_match] = ACTIONS(482), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(1638), + [sym_import_declaration] = STATE(1638), + [sym_object_definition] = STATE(1638), + [sym_class_definition] = STATE(1638), + [sym_trait_definition] = STATE(1638), + [sym_val_definition] = STATE(1638), + [sym_val_declaration] = STATE(1638), + [sym_var_declaration] = STATE(1638), + [sym_var_definition] = STATE(1638), + [sym_type_definition] = STATE(1638), + [sym_function_definition] = STATE(1638), + [sym_function_declaration] = STATE(1638), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(1639), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [aux_sym_case_block_repeat1] = STATE(1640), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1513] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2453), + [sym_block] = STATE(340), + [sym__expression] = STATE(1641), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [1514] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2453), + [sym_parenthesized_expression] = STATE(1642), + [anon_sym_LPAREN] = ACTIONS(580), [sym_comment] = ACTIONS(34), }, [1515] = { - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_EQ_GT] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1518), + [sym__expression] = STATE(1643), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_case_block] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_generic_function] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_field_expression] = STATE(1518), + [sym_instance_expression] = STATE(1518), + [sym_infix_expression] = STATE(1518), + [sym_prefix_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_string_transform_expression] = STATE(1518), + [sym_string] = STATE(1518), + [sym__simple_string] = ACTIONS(2383), + [sym__string_start] = ACTIONS(2385), + [sym__multiline_string_start] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2399), + [sym_number] = ACTIONS(2401), + [sym_comment] = ACTIONS(34), }, [1516] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_block] = STATE(1518), + [sym__expression] = STATE(1644), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_case_block] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_generic_function] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_field_expression] = STATE(1518), + [sym_instance_expression] = STATE(1518), + [sym_infix_expression] = STATE(1518), + [sym_prefix_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_string_transform_expression] = STATE(1518), + [sym_string] = STATE(1518), + [sym__simple_string] = ACTIONS(2383), + [sym__string_start] = ACTIONS(2385), + [sym__multiline_string_start] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2399), + [sym_number] = ACTIONS(2401), [sym_comment] = ACTIONS(34), }, [1517] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_LF] = ACTIONS(2459), - [sym_comment] = ACTIONS(432), + [sym_string] = STATE(1645), + [sym__simple_string] = ACTIONS(2383), + [sym__string_start] = ACTIONS(2385), + [sym__multiline_string_start] = ACTIONS(2387), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_case] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_else] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [1518] = { - [anon_sym_DOT] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_case] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_else] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [1519] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2461), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1653), + [sym_arguments] = STATE(1654), + [anon_sym_DOT] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2585), + [sym_operator_identifier] = ACTIONS(2585), + [sym_comment] = ACTIONS(464), }, [1520] = { - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_EQ_GT] = ACTIONS(112), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_else] = ACTIONS(112), - [anon_sym_match] = ACTIONS(112), - [sym_identifier] = ACTIONS(522), - [sym_operator_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_case] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), }, [1521] = { - [sym_interpolation] = STATE(1580), - [anon_sym_DOLLAR] = ACTIONS(114), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(1656), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2587), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1522] = { - [sym_interpolation] = STATE(1581), - [anon_sym_DOLLAR] = ACTIONS(116), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1338), + [sym_arguments] = STATE(1339), + [anon_sym_DOT] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_EQ] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(2147), + [sym_operator_identifier] = ACTIONS(2147), + [sym_comment] = ACTIONS(464), }, [1523] = { - [sym_package_clause] = STATE(1583), - [sym_import_declaration] = STATE(1583), - [sym_object_definition] = STATE(1583), - [sym_class_definition] = STATE(1583), - [sym_trait_definition] = STATE(1583), - [sym_val_definition] = STATE(1583), - [sym_val_declaration] = STATE(1583), - [sym_var_declaration] = STATE(1583), - [sym_var_definition] = STATE(1583), - [sym_type_definition] = STATE(1583), - [sym_function_definition] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(1584), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), }, [1524] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1585), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1658), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2589), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1525] = { - [sym_parenthesized_expression] = STATE(1586), - [anon_sym_LPAREN] = ACTIONS(546), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(1326), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(942), [sym_comment] = ACTIONS(34), }, [1526] = { - [sym_block] = STATE(1529), - [sym__expression] = STATE(1587), - [sym_if_expression] = STATE(1529), - [sym_match_expression] = STATE(1529), - [sym_assignment_expression] = STATE(1529), - [sym_generic_function] = STATE(1529), - [sym_call_expression] = STATE(1529), - [sym_field_expression] = STATE(1529), - [sym_instance_expression] = STATE(1529), - [sym_infix_expression] = STATE(1529), - [sym_prefix_expression] = STATE(1529), - [sym_tuple_expression] = STATE(1529), - [sym_parenthesized_expression] = STATE(1529), - [sym_string_transform_expression] = STATE(1529), - [sym_string] = STATE(1529), - [sym__simple_string] = ACTIONS(2379), - [sym__string_start] = ACTIONS(2381), - [sym__multiline_string_start] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [sym_identifier] = ACTIONS(2395), - [sym_number] = ACTIONS(2397), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_case] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), }, [1527] = { - [sym_block] = STATE(1529), - [sym__expression] = STATE(1588), - [sym_if_expression] = STATE(1529), - [sym_match_expression] = STATE(1529), - [sym_assignment_expression] = STATE(1529), - [sym_generic_function] = STATE(1529), - [sym_call_expression] = STATE(1529), - [sym_field_expression] = STATE(1529), - [sym_instance_expression] = STATE(1529), - [sym_infix_expression] = STATE(1529), - [sym_prefix_expression] = STATE(1529), - [sym_tuple_expression] = STATE(1529), - [sym_parenthesized_expression] = STATE(1529), - [sym_string_transform_expression] = STATE(1529), - [sym_string] = STATE(1529), - [sym__simple_string] = ACTIONS(2379), - [sym__string_start] = ACTIONS(2381), - [sym__multiline_string_start] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [sym_identifier] = ACTIONS(2395), - [sym_number] = ACTIONS(2397), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1338), + [sym_arguments] = STATE(1339), + [anon_sym_DOT] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), }, [1528] = { - [sym_string] = STATE(1589), - [sym__simple_string] = ACTIONS(2379), - [sym__string_start] = ACTIONS(2381), - [sym__multiline_string_start] = ACTIONS(2383), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_EQ_GT] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_case] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), }, [1529] = { - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_EQ_GT] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [sym_operator_identifier] = ACTIONS(552), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_with] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_operator_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(464), }, [1530] = { - [sym_type_arguments] = STATE(1597), - [sym_arguments] = STATE(1598), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_EQ] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2477), - [sym_operator_identifier] = ACTIONS(2477), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1661), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2593), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1531] = { - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_EQ_GT] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(1291), + [anon_sym_COLON] = ACTIONS(1291), + [anon_sym_with] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [sym_operator_identifier] = ACTIONS(1293), + [sym_comment] = ACTIONS(464), }, [1532] = { - [aux_sym_parameter_types_repeat1] = STATE(1600), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2479), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(1297), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_with] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_operator_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(464), }, [1533] = { - [sym_type_arguments] = STATE(1456), - [sym_arguments] = STATE(1457), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_EQ_GT] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(2297), - [sym_operator_identifier] = ACTIONS(2297), - [sym_comment] = ACTIONS(432), + [anon_sym_EQ_GT] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [sym_identifier] = ACTIONS(2155), + [sym_operator_identifier] = ACTIONS(2155), + [sym_comment] = ACTIONS(464), }, [1534] = { - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_EQ_GT] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_EQ_GT] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_match] = ACTIONS(514), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), }, [1535] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1602), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2595), + [sym_comment] = ACTIONS(34), }, [1536] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1604), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(1338), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2595), [sym_comment] = ACTIONS(34), }, [1537] = { - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_EQ_GT] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_EQ_GT] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), }, [1538] = { - [sym_type_arguments] = STATE(1456), - [sym_arguments] = STATE(1457), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_EQ_GT] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1539] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_LF] = ACTIONS(2485), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_LF] = ACTIONS(2601), + [sym_comment] = ACTIONS(464), }, [1540] = { - [anon_sym_package] = ACTIONS(1900), - [anon_sym_import] = ACTIONS(1900), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_case] = ACTIONS(1900), - [anon_sym_object] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_val] = ACTIONS(1900), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_var] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_def] = ACTIONS(1900), - [anon_sym_abstract] = ACTIONS(1900), - [anon_sym_final] = ACTIONS(1900), - [anon_sym_sealed] = ACTIONS(1900), - [anon_sym_implicit] = ACTIONS(1900), - [anon_sym_lazy] = ACTIONS(1900), - [anon_sym_override] = ACTIONS(1900), - [anon_sym_private] = ACTIONS(1900), - [anon_sym_protected] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_EQ_GT] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), }, [1541] = { - [sym_type_arguments] = STATE(1296), - [sym_arguments] = STATE(1297), - [anon_sym_package] = ACTIONS(1950), - [anon_sym_import] = ACTIONS(1950), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_case] = ACTIONS(1950), - [anon_sym_object] = ACTIONS(1950), - [anon_sym_class] = ACTIONS(1950), - [anon_sym_trait] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_val] = ACTIONS(1950), - [anon_sym_EQ] = ACTIONS(2073), - [anon_sym_var] = ACTIONS(1950), - [anon_sym_type] = ACTIONS(1950), - [anon_sym_def] = ACTIONS(1950), - [anon_sym_abstract] = ACTIONS(1950), - [anon_sym_final] = ACTIONS(1950), - [anon_sym_sealed] = ACTIONS(1950), - [anon_sym_implicit] = ACTIONS(1950), - [anon_sym_lazy] = ACTIONS(1950), - [anon_sym_override] = ACTIONS(1950), - [anon_sym_private] = ACTIONS(1950), - [anon_sym_protected] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2081), - [sym_operator_identifier] = ACTIONS(2081), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_EQ_GT] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), }, [1542] = { - [anon_sym_package] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_val] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_final] = ACTIONS(1887), - [anon_sym_sealed] = ACTIONS(1887), - [anon_sym_implicit] = ACTIONS(1887), - [anon_sym_lazy] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2603), + [sym_comment] = ACTIONS(34), }, [1543] = { - [anon_sym_package] = ACTIONS(1956), - [anon_sym_import] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_case] = ACTIONS(1956), - [anon_sym_object] = ACTIONS(1956), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_val] = ACTIONS(1956), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_var] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_def] = ACTIONS(1956), - [anon_sym_abstract] = ACTIONS(1956), - [anon_sym_final] = ACTIONS(1956), - [anon_sym_sealed] = ACTIONS(1956), - [anon_sym_implicit] = ACTIONS(1956), - [anon_sym_lazy] = ACTIONS(1956), - [anon_sym_override] = ACTIONS(1956), - [anon_sym_private] = ACTIONS(1956), - [anon_sym_protected] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_EQ_GT] = ACTIONS(116), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_else] = ACTIONS(116), + [anon_sym_match] = ACTIONS(116), + [sym_identifier] = ACTIONS(554), + [sym_operator_identifier] = ACTIONS(554), + [sym_comment] = ACTIONS(464), }, [1544] = { - [anon_sym_package] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_object] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_val] = ACTIONS(1968), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_def] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_final] = ACTIONS(1968), - [anon_sym_sealed] = ACTIONS(1968), - [anon_sym_implicit] = ACTIONS(1968), - [anon_sym_lazy] = ACTIONS(1968), - [anon_sym_override] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_protected] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1666), + [anon_sym_DOLLAR] = ACTIONS(118), + [sym_comment] = ACTIONS(34), }, [1545] = { - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_case] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_match] = ACTIONS(827), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [sym_interpolation] = STATE(1667), + [anon_sym_DOLLAR] = ACTIONS(120), + [sym_comment] = ACTIONS(34), }, [1546] = { - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_case] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), - }, - [1547] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), + [sym_package_clause] = STATE(1669), + [sym_import_declaration] = STATE(1669), + [sym_object_definition] = STATE(1669), + [sym_class_definition] = STATE(1669), + [sym_trait_definition] = STATE(1669), + [sym_val_definition] = STATE(1669), + [sym_val_declaration] = STATE(1669), + [sym_var_declaration] = STATE(1669), + [sym_var_definition] = STATE(1669), + [sym_type_definition] = STATE(1669), + [sym_function_definition] = STATE(1669), + [sym_function_declaration] = STATE(1669), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(1670), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_case_clause] = STATE(329), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [aux_sym_case_block_repeat1] = STATE(1671), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_case] = ACTIONS(558), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), + }, + [1547] = { + [sym_block] = STATE(340), + [sym__expression] = STATE(1672), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), [sym_comment] = ACTIONS(34), }, [1548] = { - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [sym_parenthesized_expression] = STATE(1673), + [anon_sym_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(34), }, [1549] = { - [aux_sym_string_repeat1] = STATE(1607), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2489), + [sym_block] = STATE(1552), + [sym__expression] = STATE(1674), + [sym_if_expression] = STATE(1552), + [sym_match_expression] = STATE(1552), + [sym_case_block] = STATE(1552), + [sym_assignment_expression] = STATE(1552), + [sym_generic_function] = STATE(1552), + [sym_call_expression] = STATE(1552), + [sym_field_expression] = STATE(1552), + [sym_instance_expression] = STATE(1552), + [sym_infix_expression] = STATE(1552), + [sym_prefix_expression] = STATE(1552), + [sym_tuple_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_string_transform_expression] = STATE(1552), + [sym_string] = STATE(1552), + [sym__simple_string] = ACTIONS(2423), + [sym__string_start] = ACTIONS(2425), + [sym__multiline_string_start] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_TILDE] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [sym_number] = ACTIONS(2441), [sym_comment] = ACTIONS(34), }, [1550] = { - [aux_sym_string_repeat2] = STATE(1608), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2489), + [sym_block] = STATE(1552), + [sym__expression] = STATE(1675), + [sym_if_expression] = STATE(1552), + [sym_match_expression] = STATE(1552), + [sym_case_block] = STATE(1552), + [sym_assignment_expression] = STATE(1552), + [sym_generic_function] = STATE(1552), + [sym_call_expression] = STATE(1552), + [sym_field_expression] = STATE(1552), + [sym_instance_expression] = STATE(1552), + [sym_infix_expression] = STATE(1552), + [sym_prefix_expression] = STATE(1552), + [sym_tuple_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_string_transform_expression] = STATE(1552), + [sym_string] = STATE(1552), + [sym__simple_string] = ACTIONS(2423), + [sym__string_start] = ACTIONS(2425), + [sym__multiline_string_start] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_TILDE] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [sym_number] = ACTIONS(2441), [sym_comment] = ACTIONS(34), }, [1551] = { - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(866), - [anon_sym_case] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_else] = ACTIONS(866), - [anon_sym_match] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [sym_string] = STATE(1676), + [sym__simple_string] = ACTIONS(2423), + [sym__string_start] = ACTIONS(2425), + [sym__multiline_string_start] = ACTIONS(2427), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_EQ_GT] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_else] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [1552] = { - [aux_sym_block_repeat1] = STATE(1611), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_LF] = ACTIONS(2493), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_EQ_GT] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_else] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [sym_operator_identifier] = ACTIONS(586), + [sym_comment] = ACTIONS(464), }, [1553] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(1611), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_LF] = ACTIONS(2493), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1684), + [sym_arguments] = STATE(1685), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_EQ_GT] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [sym_operator_identifier] = ACTIONS(2619), + [sym_comment] = ACTIONS(464), }, [1554] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1613), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2495), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_EQ_GT] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), }, [1555] = { - [sym_block] = STATE(1497), - [sym__expression] = STATE(1614), - [sym_if_expression] = STATE(1497), - [sym_match_expression] = STATE(1497), - [sym_assignment_expression] = STATE(1497), - [sym_generic_function] = STATE(1497), - [sym_call_expression] = STATE(1497), - [sym_field_expression] = STATE(1497), - [sym_instance_expression] = STATE(1497), - [sym_infix_expression] = STATE(1497), - [sym_prefix_expression] = STATE(1497), - [sym_tuple_expression] = STATE(1497), - [sym_parenthesized_expression] = STATE(1497), - [sym_string_transform_expression] = STATE(1497), - [sym_string] = STATE(1497), - [sym__simple_string] = ACTIONS(2343), - [sym__string_start] = ACTIONS(2345), - [sym__multiline_string_start] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [sym_number] = ACTIONS(2361), - [sym_comment] = ACTIONS(34), + [aux_sym_parameter_types_repeat1] = STATE(1687), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1556] = { - [sym_type_arguments] = STATE(1566), - [sym_arguments] = STATE(1567), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1364), + [sym_arguments] = STATE(1365), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_EQ_GT] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(2173), + [sym_operator_identifier] = ACTIONS(2173), + [sym_comment] = ACTIONS(464), }, [1557] = { - [sym_type_arguments] = STATE(1566), - [sym_arguments] = STATE(1567), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(926), - [anon_sym_match] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_EQ_GT] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), }, [1558] = { - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1689), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1559] = { - [sym_identifier] = ACTIONS(2497), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(1352), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_case] = ACTIONS(942), [sym_comment] = ACTIONS(34), }, [1560] = { - [sym__type] = STATE(1616), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_EQ_GT] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), }, [1561] = { - [sym_block] = STATE(1497), - [sym__expression] = STATE(1617), - [sym_if_expression] = STATE(1497), - [sym_match_expression] = STATE(1497), - [sym_assignment_expression] = STATE(1497), - [sym_generic_function] = STATE(1497), - [sym_call_expression] = STATE(1497), - [sym_field_expression] = STATE(1497), - [sym_instance_expression] = STATE(1497), - [sym_infix_expression] = STATE(1497), - [sym_prefix_expression] = STATE(1497), - [sym_tuple_expression] = STATE(1497), - [sym_parenthesized_expression] = STATE(1497), - [sym_string_transform_expression] = STATE(1497), - [sym_string] = STATE(1497), - [sym__simple_string] = ACTIONS(2343), - [sym__string_start] = ACTIONS(2345), - [sym__multiline_string_start] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [sym_number] = ACTIONS(2361), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1364), + [sym_arguments] = STATE(1365), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_EQ_GT] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), }, [1562] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1619), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_EQ_GT] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), }, [1563] = { - [sym_block] = STATE(1340), - [sym__expression] = STATE(1620), - [sym_if_expression] = STATE(1340), - [sym_match_expression] = STATE(1340), - [sym_assignment_expression] = STATE(1340), - [sym_generic_function] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_field_expression] = STATE(1340), - [sym_instance_expression] = STATE(1340), - [sym_infix_expression] = STATE(1340), - [sym_prefix_expression] = STATE(1340), - [sym_tuple_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_string_transform_expression] = STATE(1340), - [sym_string] = STATE(1340), - [sym__simple_string] = ACTIONS(2125), - [sym__string_start] = ACTIONS(2127), - [sym__multiline_string_start] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [sym_number] = ACTIONS(2143), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_else] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), }, [1564] = { - [sym_case_block] = STATE(1622), - [anon_sym_LBRACE] = ACTIONS(2501), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_COMMA] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), }, [1565] = { - [sym_block] = STATE(1497), - [sym__expression] = STATE(1623), - [sym_if_expression] = STATE(1497), - [sym_match_expression] = STATE(1497), - [sym_assignment_expression] = STATE(1497), - [sym_generic_function] = STATE(1497), - [sym_call_expression] = STATE(1497), - [sym_field_expression] = STATE(1497), - [sym_instance_expression] = STATE(1497), - [sym_infix_expression] = STATE(1497), - [sym_prefix_expression] = STATE(1497), - [sym_tuple_expression] = STATE(1497), - [sym_parenthesized_expression] = STATE(1497), - [sym_string_transform_expression] = STATE(1497), - [sym_string] = STATE(1497), - [sym__simple_string] = ACTIONS(2343), - [sym__string_start] = ACTIONS(2345), - [sym__multiline_string_start] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [sym_number] = ACTIONS(2361), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1566] = { - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_else] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(1845), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), }, [1567] = { - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_else] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(826), + [sym__expression] = STATE(1692), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), }, [1568] = { - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1569] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2503), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2629), [sym_comment] = ACTIONS(34), }, [1570] = { - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_case] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_match] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), }, [1571] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2505), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2631), [sym_comment] = ACTIONS(34), }, [1572] = { - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_match] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), }, [1573] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(2633), + [anon_sym_match] = ACTIONS(1833), + [sym_identifier] = ACTIONS(2207), + [sym_operator_identifier] = ACTIONS(2207), + [sym_comment] = ACTIONS(464), }, [1574] = { - [anon_sym_EQ_GT] = ACTIONS(1568), - [anon_sym_COLON] = ACTIONS(1568), - [anon_sym_with] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(2207), + [sym_operator_identifier] = ACTIONS(2207), + [sym_comment] = ACTIONS(464), }, [1575] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2509), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(1429), + [sym_operator_identifier] = ACTIONS(1429), + [sym_comment] = ACTIONS(464), }, [1576] = { - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_EQ_GT] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_match] = ACTIONS(827), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(2028), + [anon_sym_package] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_trait] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_val] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_final] = ACTIONS(2175), + [anon_sym_sealed] = ACTIONS(2175), + [anon_sym_implicit] = ACTIONS(2175), + [anon_sym_lazy] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), }, [1577] = { - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(862), + [sym_arguments] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(2225), + [anon_sym_package] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_val] = ACTIONS(2227), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_def] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_final] = ACTIONS(2227), + [anon_sym_sealed] = ACTIONS(2227), + [anon_sym_implicit] = ACTIONS(2227), + [anon_sym_lazy] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), + [sym_operator_identifier] = ACTIONS(1449), + [sym_comment] = ACTIONS(464), }, [1578] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1579] = { - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(2231), + [anon_sym_package] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_val] = ACTIONS(2233), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_def] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_final] = ACTIONS(2233), + [anon_sym_sealed] = ACTIONS(2233), + [anon_sym_implicit] = ACTIONS(2233), + [anon_sym_lazy] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), }, [1580] = { - [aux_sym_string_repeat1] = STATE(1630), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2513), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LF] = ACTIONS(2635), + [sym_comment] = ACTIONS(464), }, [1581] = { - [aux_sym_string_repeat2] = STATE(1631), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2513), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LF] = ACTIONS(2637), + [sym_comment] = ACTIONS(464), }, [1582] = { - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_EQ_GT] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_else] = ACTIONS(866), - [anon_sym_match] = ACTIONS(866), - [sym_identifier] = ACTIONS(868), - [sym_operator_identifier] = ACTIONS(868), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_LF] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1583] = { - [aux_sym_block_repeat1] = STATE(1634), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_LF] = ACTIONS(2517), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2639), + [sym_comment] = ACTIONS(34), }, [1584] = { - [sym_type_arguments] = STATE(391), - [sym_arguments] = STATE(392), - [aux_sym_block_repeat1] = STATE(1634), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_operator_identifier] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_LF] = ACTIONS(2517), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_COLON] = ACTIONS(1739), + [anon_sym_EQ] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1739), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_LF] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1585] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1636), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2641), + [sym_comment] = ACTIONS(34), }, [1586] = { - [sym_block] = STATE(1529), - [sym__expression] = STATE(1637), - [sym_if_expression] = STATE(1529), - [sym_match_expression] = STATE(1529), - [sym_assignment_expression] = STATE(1529), - [sym_generic_function] = STATE(1529), - [sym_call_expression] = STATE(1529), - [sym_field_expression] = STATE(1529), - [sym_instance_expression] = STATE(1529), - [sym_infix_expression] = STATE(1529), - [sym_prefix_expression] = STATE(1529), - [sym_tuple_expression] = STATE(1529), - [sym_parenthesized_expression] = STATE(1529), - [sym_string_transform_expression] = STATE(1529), - [sym_string] = STATE(1529), - [sym__simple_string] = ACTIONS(2379), - [sym__string_start] = ACTIONS(2381), - [sym__multiline_string_start] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [sym_identifier] = ACTIONS(2395), - [sym_number] = ACTIONS(2397), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_LF] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1587] = { - [sym_type_arguments] = STATE(1597), - [sym_arguments] = STATE(1598), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [sym_operator_identifier] = ACTIONS(922), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2643), + [sym_comment] = ACTIONS(34), }, [1588] = { - [sym_type_arguments] = STATE(1597), - [sym_arguments] = STATE(1598), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(926), - [anon_sym_match] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [sym_operator_identifier] = ACTIONS(928), - [sym_comment] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_LF] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), }, [1589] = { - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_EQ_GT] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [sym_operator_identifier] = ACTIONS(934), - [sym_comment] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_EQ] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_LF] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1590] = { - [sym_identifier] = ACTIONS(2521), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2645), [sym_comment] = ACTIONS(34), }, [1591] = { - [sym__type] = STATE(1639), - [sym_compound_type] = STATE(250), - [sym_infix_type] = STATE(250), - [sym_stable_type_identifier] = STATE(251), - [sym_stable_identifier] = STATE(252), - [sym_generic_type] = STATE(250), - [sym_function_type] = STATE(250), - [sym_parameter_types] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(232), - [sym_identifier] = ACTIONS(420), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_LF] = ACTIONS(2647), + [sym_comment] = ACTIONS(464), }, [1592] = { - [sym_block] = STATE(1529), - [sym__expression] = STATE(1640), - [sym_if_expression] = STATE(1529), - [sym_match_expression] = STATE(1529), - [sym_assignment_expression] = STATE(1529), - [sym_generic_function] = STATE(1529), - [sym_call_expression] = STATE(1529), - [sym_field_expression] = STATE(1529), - [sym_instance_expression] = STATE(1529), - [sym_infix_expression] = STATE(1529), - [sym_prefix_expression] = STATE(1529), - [sym_tuple_expression] = STATE(1529), - [sym_parenthesized_expression] = STATE(1529), - [sym_string_transform_expression] = STATE(1529), - [sym_string] = STATE(1529), - [sym__simple_string] = ACTIONS(2379), - [sym__string_start] = ACTIONS(2381), - [sym__multiline_string_start] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [sym_identifier] = ACTIONS(2395), - [sym_number] = ACTIONS(2397), + [sym_block] = STATE(213), + [sym__expression] = STATE(1700), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1593] = { - [sym_block] = STATE(318), - [sym__expression] = STATE(1642), - [sym_if_expression] = STATE(318), - [sym_match_expression] = STATE(318), - [sym_assignment_expression] = STATE(318), - [sym_generic_function] = STATE(318), - [sym_call_expression] = STATE(318), - [sym_field_expression] = STATE(318), - [sym_instance_expression] = STATE(318), - [sym_infix_expression] = STATE(318), - [sym_prefix_expression] = STATE(318), - [sym_tuple_expression] = STATE(318), - [sym_parenthesized_expression] = STATE(318), - [sym_string_transform_expression] = STATE(318), - [sym_string] = STATE(318), - [sym__simple_string] = ACTIONS(526), - [sym__string_start] = ACTIONS(528), - [sym__multiline_string_start] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_if] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [sym_number] = ACTIONS(544), - [sym_comment] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_LF] = ACTIONS(2647), + [sym_comment] = ACTIONS(464), }, [1594] = { - [sym_block] = STATE(1357), - [sym__expression] = STATE(1643), - [sym_if_expression] = STATE(1357), - [sym_match_expression] = STATE(1357), - [sym_assignment_expression] = STATE(1357), - [sym_generic_function] = STATE(1357), - [sym_call_expression] = STATE(1357), - [sym_field_expression] = STATE(1357), - [sym_instance_expression] = STATE(1357), - [sym_infix_expression] = STATE(1357), - [sym_prefix_expression] = STATE(1357), - [sym_tuple_expression] = STATE(1357), - [sym_parenthesized_expression] = STATE(1357), - [sym_string_transform_expression] = STATE(1357), - [sym_string] = STATE(1357), - [sym__simple_string] = ACTIONS(2147), - [sym__string_start] = ACTIONS(2149), - [sym__multiline_string_start] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [sym_number] = ACTIONS(2165), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_EQ] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_LF] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), }, [1595] = { - [sym_case_block] = STATE(1645), - [anon_sym_LBRACE] = ACTIONS(2525), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(953), + [sym_arguments] = STATE(954), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(2299), + [anon_sym_match] = ACTIONS(1573), + [sym_identifier] = ACTIONS(1575), + [sym_operator_identifier] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_LF] = ACTIONS(2299), + [sym_comment] = ACTIONS(464), }, [1596] = { - [sym_block] = STATE(1529), - [sym__expression] = STATE(1646), - [sym_if_expression] = STATE(1529), - [sym_match_expression] = STATE(1529), - [sym_assignment_expression] = STATE(1529), - [sym_generic_function] = STATE(1529), - [sym_call_expression] = STATE(1529), - [sym_field_expression] = STATE(1529), - [sym_instance_expression] = STATE(1529), - [sym_infix_expression] = STATE(1529), - [sym_prefix_expression] = STATE(1529), - [sym_tuple_expression] = STATE(1529), - [sym_parenthesized_expression] = STATE(1529), - [sym_string_transform_expression] = STATE(1529), - [sym_string] = STATE(1529), - [sym__simple_string] = ACTIONS(2379), - [sym__string_start] = ACTIONS(2381), - [sym__multiline_string_start] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [sym_identifier] = ACTIONS(2395), - [sym_number] = ACTIONS(2397), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_EQ] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_LF] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1597] = { - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_else] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [sym_identifier] = ACTIONS(946), - [sym_operator_identifier] = ACTIONS(946), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_EQ] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_LF] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), }, [1598] = { - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_EQ_GT] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_EQ] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_else] = ACTIONS(950), - [anon_sym_match] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [sym_operator_identifier] = ACTIONS(952), - [sym_comment] = ACTIONS(432), + [sym_template_body] = STATE(1701), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LF] = ACTIONS(2637), + [sym_comment] = ACTIONS(464), }, [1599] = { - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_EQ_GT] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [sym_comment] = ACTIONS(464), }, [1600] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2527), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_LF] = ACTIONS(2651), + [sym_comment] = ACTIONS(464), }, [1601] = { - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_EQ_GT] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_match] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1703), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_EQ] = ACTIONS(2655), + [anon_sym_with] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [sym_operator_identifier] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_LF] = ACTIONS(2653), + [sym_comment] = ACTIONS(464), }, [1602] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2529), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1603] = { - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_EQ_GT] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_match] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_COLON] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1604] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_trait] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_val] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_final] = ACTIONS(2175), + [anon_sym_sealed] = ACTIONS(2175), + [anon_sym_implicit] = ACTIONS(2175), + [anon_sym_lazy] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), }, [1605] = { - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_case] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_match] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(514), + [anon_sym_import] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_case] = ACTIONS(514), + [anon_sym_object] = ACTIONS(514), + [anon_sym_class] = ACTIONS(514), + [anon_sym_trait] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_val] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_var] = ACTIONS(514), + [anon_sym_type] = ACTIONS(514), + [anon_sym_def] = ACTIONS(514), + [anon_sym_abstract] = ACTIONS(514), + [anon_sym_final] = ACTIONS(514), + [anon_sym_sealed] = ACTIONS(514), + [anon_sym_implicit] = ACTIONS(514), + [anon_sym_lazy] = ACTIONS(514), + [anon_sym_override] = ACTIONS(514), + [anon_sym_private] = ACTIONS(514), + [anon_sym_protected] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_else] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), }, [1606] = { - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_case] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_else] = ACTIONS(482), - [anon_sym_match] = ACTIONS(482), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2657), + [sym_comment] = ACTIONS(34), }, [1607] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2533), + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2657), [sym_comment] = ACTIONS(34), }, [1608] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2533), - [sym_comment] = ACTIONS(34), + [anon_sym_package] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_object] = ACTIONS(1358), + [anon_sym_class] = ACTIONS(1358), + [anon_sym_trait] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_val] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_var] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_def] = ACTIONS(1358), + [anon_sym_abstract] = ACTIONS(1358), + [anon_sym_final] = ACTIONS(1358), + [anon_sym_sealed] = ACTIONS(1358), + [anon_sym_implicit] = ACTIONS(1358), + [anon_sym_lazy] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), }, [1609] = { - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), - }, - [1610] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, + [1610] = { + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_LF] = ACTIONS(2663), + [sym_comment] = ACTIONS(464), + }, [1611] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_LF] = ACTIONS(2539), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1370), + [anon_sym_import] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_object] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(1370), + [anon_sym_trait] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_val] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_def] = ACTIONS(1370), + [anon_sym_abstract] = ACTIONS(1370), + [anon_sym_final] = ACTIONS(1370), + [anon_sym_sealed] = ACTIONS(1370), + [anon_sym_implicit] = ACTIONS(1370), + [anon_sym_lazy] = ACTIONS(1370), + [anon_sym_override] = ACTIONS(1370), + [anon_sym_private] = ACTIONS(1370), + [anon_sym_protected] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_match] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), }, [1612] = { - [anon_sym_DOT] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1415), + [anon_sym_import] = ACTIONS(1415), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_object] = ACTIONS(1415), + [anon_sym_class] = ACTIONS(1415), + [anon_sym_trait] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_val] = ACTIONS(1415), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1415), + [anon_sym_def] = ACTIONS(1415), + [anon_sym_abstract] = ACTIONS(1415), + [anon_sym_final] = ACTIONS(1415), + [anon_sym_sealed] = ACTIONS(1415), + [anon_sym_implicit] = ACTIONS(1415), + [anon_sym_lazy] = ACTIONS(1415), + [anon_sym_override] = ACTIONS(1415), + [anon_sym_private] = ACTIONS(1415), + [anon_sym_protected] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), }, [1613] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2541), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2665), [sym_comment] = ACTIONS(34), }, [1614] = { - [sym_type_arguments] = STATE(1566), - [sym_arguments] = STATE(1567), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2441), - [sym_identifier] = ACTIONS(2443), - [sym_operator_identifier] = ACTIONS(2443), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1483), + [sym_arguments] = STATE(1484), + [anon_sym_package] = ACTIONS(1435), + [anon_sym_import] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_object] = ACTIONS(1435), + [anon_sym_class] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_val] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(2347), + [anon_sym_var] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_abstract] = ACTIONS(1435), + [anon_sym_final] = ACTIONS(1435), + [anon_sym_sealed] = ACTIONS(1435), + [anon_sym_implicit] = ACTIONS(1435), + [anon_sym_lazy] = ACTIONS(1435), + [anon_sym_override] = ACTIONS(1435), + [anon_sym_private] = ACTIONS(1435), + [anon_sym_protected] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_match] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2355), + [sym_operator_identifier] = ACTIONS(2355), + [sym_comment] = ACTIONS(464), }, [1615] = { - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1453), + [anon_sym_import] = ACTIONS(1453), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_case] = ACTIONS(1453), + [anon_sym_object] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1453), + [anon_sym_trait] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_val] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_abstract] = ACTIONS(1453), + [anon_sym_final] = ACTIONS(1453), + [anon_sym_sealed] = ACTIONS(1453), + [anon_sym_implicit] = ACTIONS(1453), + [anon_sym_lazy] = ACTIONS(1453), + [anon_sym_override] = ACTIONS(1453), + [anon_sym_private] = ACTIONS(1453), + [anon_sym_protected] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), }, [1616] = { - [aux_sym_parameter_types_repeat1] = STATE(1656), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2545), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1710), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2669), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), }, [1617] = { - [sym_type_arguments] = STATE(1566), - [sym_arguments] = STATE(1567), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(2443), - [sym_operator_identifier] = ACTIONS(2443), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1483), + [sym_arguments] = STATE(1484), + [anon_sym_package] = ACTIONS(1461), + [anon_sym_import] = ACTIONS(1461), + [anon_sym_DOT] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_object] = ACTIONS(1461), + [anon_sym_class] = ACTIONS(1461), + [anon_sym_trait] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_val] = ACTIONS(1461), + [anon_sym_EQ] = ACTIONS(2347), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1461), + [anon_sym_def] = ACTIONS(1461), + [anon_sym_abstract] = ACTIONS(1461), + [anon_sym_final] = ACTIONS(1461), + [anon_sym_sealed] = ACTIONS(1461), + [anon_sym_implicit] = ACTIONS(1461), + [anon_sym_lazy] = ACTIONS(1461), + [anon_sym_override] = ACTIONS(1461), + [anon_sym_private] = ACTIONS(1461), + [anon_sym_protected] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(2355), + [sym_operator_identifier] = ACTIONS(2355), + [sym_comment] = ACTIONS(464), }, [1618] = { - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_object] = ACTIONS(1465), + [anon_sym_class] = ACTIONS(1465), + [anon_sym_trait] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_val] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1465), + [anon_sym_abstract] = ACTIONS(1465), + [anon_sym_final] = ACTIONS(1465), + [anon_sym_sealed] = ACTIONS(1465), + [anon_sym_implicit] = ACTIONS(1465), + [anon_sym_lazy] = ACTIONS(1465), + [anon_sym_override] = ACTIONS(1465), + [anon_sym_private] = ACTIONS(1465), + [anon_sym_protected] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_match] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), }, [1619] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1658), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1712), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1620] = { - [sym_type_arguments] = STATE(1431), - [sym_arguments] = STATE(1432), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_case] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_EQ] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2269), - [sym_identifier] = ACTIONS(2271), - [sym_operator_identifier] = ACTIONS(2271), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(2227), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_def] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_final] = ACTIONS(2227), + [anon_sym_sealed] = ACTIONS(2227), + [anon_sym_implicit] = ACTIONS(2227), + [anon_sym_lazy] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1621] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1660), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_case] = ACTIONS(1338), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(1470), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(942), [sym_comment] = ACTIONS(34), }, [1622] = { - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1475), + [anon_sym_import] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_case] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [anon_sym_class] = ACTIONS(1475), + [anon_sym_trait] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_val] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_var] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1475), + [anon_sym_abstract] = ACTIONS(1475), + [anon_sym_final] = ACTIONS(1475), + [anon_sym_sealed] = ACTIONS(1475), + [anon_sym_implicit] = ACTIONS(1475), + [anon_sym_lazy] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1475), + [anon_sym_match] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), }, [1623] = { - [sym_type_arguments] = STATE(1566), - [sym_arguments] = STATE(1567), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1483), + [sym_arguments] = STATE(1484), + [anon_sym_package] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_object] = ACTIONS(1481), + [anon_sym_class] = ACTIONS(1481), + [anon_sym_trait] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_val] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_type] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_abstract] = ACTIONS(1481), + [anon_sym_final] = ACTIONS(1481), + [anon_sym_sealed] = ACTIONS(1481), + [anon_sym_implicit] = ACTIONS(1481), + [anon_sym_lazy] = ACTIONS(1481), + [anon_sym_override] = ACTIONS(1481), + [anon_sym_private] = ACTIONS(1481), + [anon_sym_protected] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), }, [1624] = { - [anon_sym_DOT] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_case] = ACTIONS(1487), + [anon_sym_object] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1487), + [anon_sym_trait] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_val] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_var] = ACTIONS(1487), + [anon_sym_type] = ACTIONS(1487), + [anon_sym_def] = ACTIONS(1487), + [anon_sym_abstract] = ACTIONS(1487), + [anon_sym_final] = ACTIONS(1487), + [anon_sym_sealed] = ACTIONS(1487), + [anon_sym_implicit] = ACTIONS(1487), + [anon_sym_lazy] = ACTIONS(1487), + [anon_sym_override] = ACTIONS(1487), + [anon_sym_private] = ACTIONS(1487), + [anon_sym_protected] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_else] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), }, [1625] = { - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_case] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_match] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1626] = { - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_val] = ACTIONS(2233), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_def] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_final] = ACTIONS(2233), + [anon_sym_sealed] = ACTIONS(2233), + [anon_sym_implicit] = ACTIONS(2233), + [anon_sym_lazy] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), }, [1627] = { - [anon_sym_EQ_GT] = ACTIONS(1887), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1628] = { - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_match] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), }, [1629] = { - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_EQ_GT] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_else] = ACTIONS(482), - [anon_sym_match] = ACTIONS(482), - [sym_identifier] = ACTIONS(1234), - [sym_operator_identifier] = ACTIONS(1234), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(2323), + [anon_sym_import] = ACTIONS(2323), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_case] = ACTIONS(2323), + [anon_sym_object] = ACTIONS(2323), + [anon_sym_class] = ACTIONS(2323), + [anon_sym_trait] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(2323), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2323), + [anon_sym_def] = ACTIONS(2323), + [anon_sym_abstract] = ACTIONS(2323), + [anon_sym_final] = ACTIONS(2323), + [anon_sym_sealed] = ACTIONS(2323), + [anon_sym_implicit] = ACTIONS(2323), + [anon_sym_lazy] = ACTIONS(2323), + [anon_sym_override] = ACTIONS(2323), + [anon_sym_private] = ACTIONS(2323), + [anon_sym_protected] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), }, [1630] = { - [aux_sym_string_repeat1] = STATE(280), - [sym__string_middle] = ACTIONS(250), - [sym__string_end] = ACTIONS(2551), + [sym_block] = STATE(727), + [sym__expression] = STATE(1714), + [sym_if_expression] = STATE(727), + [sym_match_expression] = STATE(727), + [sym_case_block] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_generic_function] = STATE(727), + [sym_call_expression] = STATE(727), + [sym_field_expression] = STATE(727), + [sym_instance_expression] = STATE(727), + [sym_infix_expression] = STATE(727), + [sym_prefix_expression] = STATE(727), + [sym_tuple_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(727), + [sym_string_transform_expression] = STATE(727), + [sym_string] = STATE(727), + [sym__simple_string] = ACTIONS(1210), + [sym__string_start] = ACTIONS(1212), + [sym__multiline_string_start] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_comment] = ACTIONS(34), }, [1631] = { - [aux_sym_string_repeat2] = STATE(285), - [sym__multiline_string_middle] = ACTIONS(258), - [sym__multiline_string_end] = ACTIONS(2551), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_case] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_match] = ACTIONS(883), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), }, [1632] = { - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_EQ_GT] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [sym_operator_identifier] = ACTIONS(1240), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_case] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_match] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), }, [1633] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), [sym_comment] = ACTIONS(34), }, [1634] = { - [aux_sym_block_repeat1] = STATE(613), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_LF] = ACTIONS(2557), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_case] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), }, [1635] = { - [anon_sym_DOT] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [sym_operator_identifier] = ACTIONS(1284), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(1717), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2677), + [sym_comment] = ACTIONS(34), }, [1636] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2559), + [aux_sym_string_repeat2] = STATE(1718), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2677), [sym_comment] = ACTIONS(34), }, [1637] = { - [sym_type_arguments] = STATE(1597), - [sym_arguments] = STATE(1598), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_EQ] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(2561), - [anon_sym_match] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2477), - [sym_operator_identifier] = ACTIONS(2477), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_case] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_else] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [1638] = { - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_EQ_GT] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [sym_operator_identifier] = ACTIONS(1320), - [sym_comment] = ACTIONS(432), + [aux_sym_block_repeat1] = STATE(1721), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym_LF] = ACTIONS(2681), + [sym_comment] = ACTIONS(464), }, [1639] = { - [aux_sym_parameter_types_repeat1] = STATE(1667), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2563), - [anon_sym_with] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_operator_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(1721), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym_LF] = ACTIONS(2681), + [sym_comment] = ACTIONS(464), }, [1640] = { - [sym_type_arguments] = STATE(1597), - [sym_arguments] = STATE(1598), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_EQ] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [sym_identifier] = ACTIONS(2477), - [sym_operator_identifier] = ACTIONS(2477), - [sym_comment] = ACTIONS(432), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), }, [1641] = { - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_EQ_GT] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [sym_operator_identifier] = ACTIONS(1332), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1724), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1642] = { - [sym_type_arguments] = STATE(517), - [sym_arguments] = STATE(518), - [aux_sym_tuple_expression_repeat1] = STATE(1669), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [sym_operator_identifier] = ACTIONS(890), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1518), + [sym__expression] = STATE(1725), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_case_block] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_generic_function] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_field_expression] = STATE(1518), + [sym_instance_expression] = STATE(1518), + [sym_infix_expression] = STATE(1518), + [sym_prefix_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_string_transform_expression] = STATE(1518), + [sym_string] = STATE(1518), + [sym__simple_string] = ACTIONS(2383), + [sym__string_start] = ACTIONS(2385), + [sym__multiline_string_start] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2399), + [sym_number] = ACTIONS(2401), + [sym_comment] = ACTIONS(34), }, [1643] = { - [sym_type_arguments] = STATE(1456), - [sym_arguments] = STATE(1457), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_EQ_GT] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2297), - [sym_operator_identifier] = ACTIONS(2297), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1653), + [sym_arguments] = STATE(1654), + [anon_sym_DOT] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_case] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [1644] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1671), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [sym_type_arguments] = STATE(1653), + [sym_arguments] = STATE(1654), + [anon_sym_DOT] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [1645] = { - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_EQ_GT] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [sym_operator_identifier] = ACTIONS(1344), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_case] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [1646] = { - [sym_type_arguments] = STATE(1597), - [sym_arguments] = STATE(1598), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [sym_operator_identifier] = ACTIONS(1350), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2687), + [sym_comment] = ACTIONS(34), }, [1647] = { - [anon_sym_DOT] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1727), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1648] = { - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_EQ_GT] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_match] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1518), + [sym__expression] = STATE(1728), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_case_block] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_generic_function] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_field_expression] = STATE(1518), + [sym_instance_expression] = STATE(1518), + [sym_infix_expression] = STATE(1518), + [sym_prefix_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_string_transform_expression] = STATE(1518), + [sym_string] = STATE(1518), + [sym__simple_string] = ACTIONS(2383), + [sym__string_start] = ACTIONS(2385), + [sym__multiline_string_start] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2399), + [sym_number] = ACTIONS(2401), + [sym_comment] = ACTIONS(34), }, [1649] = { - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(1730), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [1650] = { - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_case] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_else] = ACTIONS(827), - [anon_sym_match] = ACTIONS(827), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1081), + [sym__expression] = STATE(1731), + [sym_if_expression] = STATE(1081), + [sym_match_expression] = STATE(1081), + [sym_case_block] = STATE(1081), + [sym_assignment_expression] = STATE(1081), + [sym_generic_function] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_field_expression] = STATE(1081), + [sym_instance_expression] = STATE(1081), + [sym_infix_expression] = STATE(1081), + [sym_prefix_expression] = STATE(1081), + [sym_tuple_expression] = STATE(1081), + [sym_parenthesized_expression] = STATE(1081), + [sym_string_transform_expression] = STATE(1081), + [sym_string] = STATE(1081), + [sym__simple_string] = ACTIONS(1761), + [sym__string_start] = ACTIONS(1763), + [sym__multiline_string_start] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [sym_number] = ACTIONS(1779), + [sym_comment] = ACTIONS(34), }, [1651] = { - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_case] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1592), - [anon_sym_match] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [sym_case_block] = STATE(1733), + [anon_sym_LBRACE] = ACTIONS(2691), + [sym_comment] = ACTIONS(34), }, [1652] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2569), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), + [sym_block] = STATE(1518), + [sym__expression] = STATE(1734), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_case_block] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_generic_function] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_field_expression] = STATE(1518), + [sym_instance_expression] = STATE(1518), + [sym_infix_expression] = STATE(1518), + [sym_prefix_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_string_transform_expression] = STATE(1518), + [sym_string] = STATE(1518), + [sym__simple_string] = ACTIONS(2383), + [sym__string_start] = ACTIONS(2385), + [sym__multiline_string_start] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2399), + [sym_number] = ACTIONS(2401), [sym_comment] = ACTIONS(34), }, [1653] = { - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_else] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), }, [1654] = { - [sym_block] = STATE(1497), - [sym__expression] = STATE(1673), - [sym_if_expression] = STATE(1497), - [sym_match_expression] = STATE(1497), - [sym_assignment_expression] = STATE(1497), - [sym_generic_function] = STATE(1497), - [sym_call_expression] = STATE(1497), - [sym_field_expression] = STATE(1497), - [sym_instance_expression] = STATE(1497), - [sym_infix_expression] = STATE(1497), - [sym_prefix_expression] = STATE(1497), - [sym_tuple_expression] = STATE(1497), - [sym_parenthesized_expression] = STATE(1497), - [sym_string_transform_expression] = STATE(1497), - [sym_string] = STATE(1497), - [sym__simple_string] = ACTIONS(2343), - [sym__string_start] = ACTIONS(2345), - [sym__multiline_string_start] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [sym_number] = ACTIONS(2361), - [sym_comment] = ACTIONS(34), + [sym_block] = STATE(1735), + [sym_case_block] = STATE(1735), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), }, [1655] = { - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_else] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1656] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2571), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2695), [sym_comment] = ACTIONS(34), }, [1657] = { - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_case] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), }, [1658] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2573), + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2697), [sym_comment] = ACTIONS(34), }, [1659] = { - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), }, [1660] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_case] = ACTIONS(1338), - [sym_comment] = ACTIONS(34), + [anon_sym_EQ_GT] = ACTIONS(1737), + [anon_sym_COLON] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), }, [1661] = { - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_EQ_GT] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_else] = ACTIONS(827), - [anon_sym_match] = ACTIONS(827), - [sym_identifier] = ACTIONS(1590), - [sym_operator_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(432), + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2699), + [sym_comment] = ACTIONS(34), }, [1662] = { - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1592), - [anon_sym_match] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [sym_operator_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_match] = ACTIONS(883), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), }, [1663] = { - [sym_package_clause] = STATE(610), - [sym_import_declaration] = STATE(610), - [sym_object_definition] = STATE(610), - [sym_class_definition] = STATE(610), - [sym_trait_definition] = STATE(610), - [sym_val_definition] = STATE(610), - [sym_val_declaration] = STATE(610), - [sym_var_declaration] = STATE(610), - [sym_var_definition] = STATE(610), - [sym_type_definition] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_function_declaration] = STATE(610), - [sym_modifiers] = STATE(209), - [sym_block] = STATE(207), - [sym__expression] = STATE(611), - [sym_if_expression] = STATE(207), - [sym_match_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_generic_function] = STATE(207), - [sym_call_expression] = STATE(207), - [sym_field_expression] = STATE(207), - [sym_instance_expression] = STATE(207), - [sym_infix_expression] = STATE(207), - [sym_prefix_expression] = STATE(207), - [sym_tuple_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(207), - [sym_string_transform_expression] = STATE(207), - [sym_string] = STATE(207), - [aux_sym_modifiers_repeat1] = STATE(17), - [sym__simple_string] = ACTIONS(318), - [sym__string_start] = ACTIONS(320), - [sym__multiline_string_start] = ACTIONS(322), - [anon_sym_package] = ACTIONS(324), - [anon_sym_import] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(332), - [anon_sym_object] = ACTIONS(334), - [anon_sym_class] = ACTIONS(336), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_val] = ACTIONS(340), - [anon_sym_var] = ACTIONS(342), - [anon_sym_type] = ACTIONS(344), - [anon_sym_def] = ACTIONS(346), - [anon_sym_abstract] = ACTIONS(348), - [anon_sym_final] = ACTIONS(348), - [anon_sym_sealed] = ACTIONS(348), - [anon_sym_implicit] = ACTIONS(348), - [anon_sym_lazy] = ACTIONS(348), - [anon_sym_override] = ACTIONS(348), - [anon_sym_private] = ACTIONS(348), - [anon_sym_protected] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(350), - [anon_sym_if] = ACTIONS(352), - [anon_sym_new] = ACTIONS(354), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(356), - [sym_identifier] = ACTIONS(358), - [sym_number] = ACTIONS(360), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_EQ_GT] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_match] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), }, [1664] = { - [anon_sym_DOT] = ACTIONS(1632), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_else] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [sym_operator_identifier] = ACTIONS(1636), - [sym_comment] = ACTIONS(432), + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), }, [1665] = { - [sym_block] = STATE(1529), - [sym__expression] = STATE(1678), - [sym_if_expression] = STATE(1529), - [sym_match_expression] = STATE(1529), - [sym_assignment_expression] = STATE(1529), - [sym_generic_function] = STATE(1529), - [sym_call_expression] = STATE(1529), - [sym_field_expression] = STATE(1529), - [sym_instance_expression] = STATE(1529), - [sym_infix_expression] = STATE(1529), - [sym_prefix_expression] = STATE(1529), - [sym_tuple_expression] = STATE(1529), - [sym_parenthesized_expression] = STATE(1529), - [sym_string_transform_expression] = STATE(1529), - [sym_string] = STATE(1529), - [sym__simple_string] = ACTIONS(2379), - [sym__string_start] = ACTIONS(2381), - [sym__multiline_string_start] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_TILDE] = ACTIONS(2393), - [sym_identifier] = ACTIONS(2395), - [sym_number] = ACTIONS(2397), - [sym_comment] = ACTIONS(34), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_EQ_GT] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), }, [1666] = { - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_EQ_GT] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_else] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [sym_operator_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(432), + [aux_sym_string_repeat1] = STATE(1741), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2703), + [sym_comment] = ACTIONS(34), }, [1667] = { - [aux_sym_parameter_types_repeat1] = STATE(962), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_RBRACK] = ACTIONS(2579), + [aux_sym_string_repeat2] = STATE(1742), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2703), [sym_comment] = ACTIONS(34), }, [1668] = { - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_EQ_GT] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [sym_operator_identifier] = ACTIONS(1667), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_EQ_GT] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_else] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_operator_identifier] = ACTIONS(924), + [sym_comment] = ACTIONS(464), }, [1669] = { - [aux_sym_tuple_expression_repeat1] = STATE(765), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(2581), - [sym_comment] = ACTIONS(34), + [aux_sym_block_repeat1] = STATE(1745), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_LF] = ACTIONS(2707), + [sym_comment] = ACTIONS(464), }, [1670] = { - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_EQ_GT] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [sym_operator_identifier] = ACTIONS(1675), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [aux_sym_block_repeat1] = STATE(1745), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_LF] = ACTIONS(2707), + [sym_comment] = ACTIONS(464), }, [1671] = { - [sym_case_clause] = STATE(795), - [aux_sym_case_block_repeat1] = STATE(1035), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(1338), + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(543), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(942), [sym_comment] = ACTIONS(34), }, [1672] = { - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_case] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1748), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2711), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), }, [1673] = { - [sym_type_arguments] = STATE(1566), - [sym_arguments] = STATE(1567), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_case] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(2441), - [sym_identifier] = ACTIONS(2443), - [sym_operator_identifier] = ACTIONS(2443), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1552), + [sym__expression] = STATE(1749), + [sym_if_expression] = STATE(1552), + [sym_match_expression] = STATE(1552), + [sym_case_block] = STATE(1552), + [sym_assignment_expression] = STATE(1552), + [sym_generic_function] = STATE(1552), + [sym_call_expression] = STATE(1552), + [sym_field_expression] = STATE(1552), + [sym_instance_expression] = STATE(1552), + [sym_infix_expression] = STATE(1552), + [sym_prefix_expression] = STATE(1552), + [sym_tuple_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_string_transform_expression] = STATE(1552), + [sym_string] = STATE(1552), + [sym__simple_string] = ACTIONS(2423), + [sym__string_start] = ACTIONS(2425), + [sym__multiline_string_start] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_TILDE] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [sym_number] = ACTIONS(2441), + [sym_comment] = ACTIONS(34), }, [1674] = { - [anon_sym_DOT] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1684), + [sym_arguments] = STATE(1685), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_EQ_GT] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_operator_identifier] = ACTIONS(992), + [sym_comment] = ACTIONS(464), }, [1675] = { - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_case] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [sym_type_arguments] = STATE(1684), + [sym_arguments] = STATE(1685), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_EQ_GT] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [sym_operator_identifier] = ACTIONS(998), + [sym_comment] = ACTIONS(464), }, [1676] = { - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_EQ_GT] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_operator_identifier] = ACTIONS(1004), + [sym_comment] = ACTIONS(464), }, [1677] = { - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [sym_operator_identifier] = ACTIONS(1902), - [sym_comment] = ACTIONS(432), + [sym_identifier] = ACTIONS(2713), + [sym_comment] = ACTIONS(34), }, [1678] = { - [sym_type_arguments] = STATE(1597), - [sym_arguments] = STATE(1598), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_EQ] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2477), - [sym_operator_identifier] = ACTIONS(2477), - [sym_comment] = ACTIONS(432), + [sym__type] = STATE(1751), + [sym_compound_type] = STATE(269), + [sym_infix_type] = STATE(269), + [sym_stable_type_identifier] = STATE(270), + [sym_stable_identifier] = STATE(271), + [sym_generic_type] = STATE(269), + [sym_function_type] = STATE(269), + [sym_parameter_types] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(244), + [sym_identifier] = ACTIONS(452), + [sym_comment] = ACTIONS(34), }, [1679] = { - [anon_sym_DOT] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [sym_operator_identifier] = ACTIONS(1889), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1552), + [sym__expression] = STATE(1752), + [sym_if_expression] = STATE(1552), + [sym_match_expression] = STATE(1552), + [sym_case_block] = STATE(1552), + [sym_assignment_expression] = STATE(1552), + [sym_generic_function] = STATE(1552), + [sym_call_expression] = STATE(1552), + [sym_field_expression] = STATE(1552), + [sym_instance_expression] = STATE(1552), + [sym_infix_expression] = STATE(1552), + [sym_prefix_expression] = STATE(1552), + [sym_tuple_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_string_transform_expression] = STATE(1552), + [sym_string] = STATE(1552), + [sym__simple_string] = ACTIONS(2423), + [sym__string_start] = ACTIONS(2425), + [sym__multiline_string_start] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_TILDE] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [sym_number] = ACTIONS(2441), + [sym_comment] = ACTIONS(34), }, [1680] = { - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_EQ_GT] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [sym_operator_identifier] = ACTIONS(1958), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(340), + [sym__expression] = STATE(1754), + [sym_if_expression] = STATE(340), + [sym_match_expression] = STATE(340), + [sym_case_block] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_generic_function] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_instance_expression] = STATE(340), + [sym_infix_expression] = STATE(340), + [sym_prefix_expression] = STATE(340), + [sym_tuple_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_string_transform_expression] = STATE(340), + [sym_string] = STATE(340), + [sym__simple_string] = ACTIONS(560), + [sym__string_start] = ACTIONS(562), + [sym__multiline_string_start] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_number] = ACTIONS(578), + [sym_comment] = ACTIONS(34), }, [1681] = { - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [sym_operator_identifier] = ACTIONS(1970), - [sym_comment] = ACTIONS(432), + [sym_block] = STATE(1098), + [sym__expression] = STATE(1755), + [sym_if_expression] = STATE(1098), + [sym_match_expression] = STATE(1098), + [sym_case_block] = STATE(1098), + [sym_assignment_expression] = STATE(1098), + [sym_generic_function] = STATE(1098), + [sym_call_expression] = STATE(1098), + [sym_field_expression] = STATE(1098), + [sym_instance_expression] = STATE(1098), + [sym_infix_expression] = STATE(1098), + [sym_prefix_expression] = STATE(1098), + [sym_tuple_expression] = STATE(1098), + [sym_parenthesized_expression] = STATE(1098), + [sym_string_transform_expression] = STATE(1098), + [sym_string] = STATE(1098), + [sym__simple_string] = ACTIONS(1783), + [sym__string_start] = ACTIONS(1785), + [sym__multiline_string_start] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [sym_number] = ACTIONS(1801), + [sym_comment] = ACTIONS(34), + }, + [1682] = { + [sym_case_block] = STATE(1757), + [anon_sym_LBRACE] = ACTIONS(2717), + [sym_comment] = ACTIONS(34), + }, + [1683] = { + [sym_block] = STATE(1552), + [sym__expression] = STATE(1758), + [sym_if_expression] = STATE(1552), + [sym_match_expression] = STATE(1552), + [sym_case_block] = STATE(1552), + [sym_assignment_expression] = STATE(1552), + [sym_generic_function] = STATE(1552), + [sym_call_expression] = STATE(1552), + [sym_field_expression] = STATE(1552), + [sym_instance_expression] = STATE(1552), + [sym_infix_expression] = STATE(1552), + [sym_prefix_expression] = STATE(1552), + [sym_tuple_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_string_transform_expression] = STATE(1552), + [sym_string] = STATE(1552), + [sym__simple_string] = ACTIONS(2423), + [sym__string_start] = ACTIONS(2425), + [sym__multiline_string_start] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_TILDE] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [sym_number] = ACTIONS(2441), + [sym_comment] = ACTIONS(34), + }, + [1684] = { + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_EQ_GT] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_operator_identifier] = ACTIONS(1016), + [sym_comment] = ACTIONS(464), + }, + [1685] = { + [sym_block] = STATE(1759), + [sym_case_block] = STATE(1759), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_EQ_GT] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [sym_identifier] = ACTIONS(1024), + [sym_operator_identifier] = ACTIONS(1024), + [sym_comment] = ACTIONS(464), + }, + [1686] = { + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_EQ_GT] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), + }, + [1687] = { + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2721), + [sym_comment] = ACTIONS(34), + }, + [1688] = { + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_EQ_GT] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), + }, + [1689] = { + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2723), + [sym_comment] = ACTIONS(34), + }, + [1690] = { + [anon_sym_DOT] = ACTIONS(1888), + [anon_sym_EQ_GT] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), + }, + [1691] = { + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_COMMA] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), + }, + [1692] = { + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(1833), + [sym_identifier] = ACTIONS(1835), + [sym_operator_identifier] = ACTIONS(1835), + [sym_comment] = ACTIONS(464), + }, + [1693] = { + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1694] = { + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), + }, + [1695] = { + [sym_block] = STATE(826), + [sym__expression] = STATE(1762), + [sym_if_expression] = STATE(826), + [sym_match_expression] = STATE(826), + [sym_case_block] = STATE(826), + [sym_assignment_expression] = STATE(826), + [sym_generic_function] = STATE(826), + [sym_call_expression] = STATE(826), + [sym_field_expression] = STATE(826), + [sym_instance_expression] = STATE(826), + [sym_infix_expression] = STATE(826), + [sym_prefix_expression] = STATE(826), + [sym_tuple_expression] = STATE(826), + [sym_parenthesized_expression] = STATE(826), + [sym_string_transform_expression] = STATE(826), + [sym_string] = STATE(826), + [sym__simple_string] = ACTIONS(1389), + [sym__string_start] = ACTIONS(1391), + [sym__multiline_string_start] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1405), + [sym_number] = ACTIONS(1407), + [sym_comment] = ACTIONS(34), + }, + [1696] = { + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_LF] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1697] = { + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_COLON] = ACTIONS(2122), + [anon_sym_EQ] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_LF] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1698] = { + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_LF] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1699] = { + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_EQ] = ACTIONS(2122), + [anon_sym_with] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_LF] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1700] = { + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2725), + [anon_sym_LF] = ACTIONS(2725), + [sym_comment] = ACTIONS(464), + }, + [1701] = { + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [sym_comment] = ACTIONS(464), + }, + [1702] = { + [sym_block] = STATE(213), + [sym__expression] = STATE(1763), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), + }, + [1703] = { + [anon_sym_RBRACE] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2725), + [anon_sym_LF] = ACTIONS(2725), + [sym_comment] = ACTIONS(464), + }, + [1704] = { + [anon_sym_package] = ACTIONS(883), + [anon_sym_import] = ACTIONS(883), + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_case] = ACTIONS(883), + [anon_sym_object] = ACTIONS(883), + [anon_sym_class] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_val] = ACTIONS(883), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_var] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_def] = ACTIONS(883), + [anon_sym_abstract] = ACTIONS(883), + [anon_sym_final] = ACTIONS(883), + [anon_sym_sealed] = ACTIONS(883), + [anon_sym_implicit] = ACTIONS(883), + [anon_sym_lazy] = ACTIONS(883), + [anon_sym_override] = ACTIONS(883), + [anon_sym_private] = ACTIONS(883), + [anon_sym_protected] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_else] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), + }, + [1705] = { + [anon_sym_package] = ACTIONS(1805), + [anon_sym_import] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_case] = ACTIONS(1805), + [anon_sym_object] = ACTIONS(1805), + [anon_sym_class] = ACTIONS(1805), + [anon_sym_trait] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_val] = ACTIONS(1805), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_var] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_abstract] = ACTIONS(1805), + [anon_sym_final] = ACTIONS(1805), + [anon_sym_sealed] = ACTIONS(1805), + [anon_sym_implicit] = ACTIONS(1805), + [anon_sym_lazy] = ACTIONS(1805), + [anon_sym_override] = ACTIONS(1805), + [anon_sym_private] = ACTIONS(1805), + [anon_sym_protected] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), + }, + [1706] = { + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), + }, + [1707] = { + [anon_sym_package] = ACTIONS(1847), + [anon_sym_import] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_case] = ACTIONS(1847), + [anon_sym_object] = ACTIONS(1847), + [anon_sym_class] = ACTIONS(1847), + [anon_sym_trait] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_val] = ACTIONS(1847), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_var] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_abstract] = ACTIONS(1847), + [anon_sym_final] = ACTIONS(1847), + [anon_sym_sealed] = ACTIONS(1847), + [anon_sym_implicit] = ACTIONS(1847), + [anon_sym_lazy] = ACTIONS(1847), + [anon_sym_override] = ACTIONS(1847), + [anon_sym_private] = ACTIONS(1847), + [anon_sym_protected] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), + }, + [1708] = { + [sym_block] = STATE(1284), + [sym__expression] = STATE(1765), + [sym_if_expression] = STATE(1284), + [sym_match_expression] = STATE(1284), + [sym_case_block] = STATE(1284), + [sym_assignment_expression] = STATE(1284), + [sym_generic_function] = STATE(1284), + [sym_call_expression] = STATE(1284), + [sym_field_expression] = STATE(1284), + [sym_instance_expression] = STATE(1284), + [sym_infix_expression] = STATE(1284), + [sym_prefix_expression] = STATE(1284), + [sym_tuple_expression] = STATE(1284), + [sym_parenthesized_expression] = STATE(1284), + [sym_string_transform_expression] = STATE(1284), + [sym_string] = STATE(1284), + [sym__simple_string] = ACTIONS(2074), + [sym__string_start] = ACTIONS(2076), + [sym__multiline_string_start] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_new] = ACTIONS(2086), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_TILDE] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [sym_number] = ACTIONS(2092), + [sym_comment] = ACTIONS(34), + }, + [1709] = { + [anon_sym_package] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_object] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_val] = ACTIONS(1737), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_var] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_abstract] = ACTIONS(1737), + [anon_sym_final] = ACTIONS(1737), + [anon_sym_sealed] = ACTIONS(1737), + [anon_sym_implicit] = ACTIONS(1737), + [anon_sym_lazy] = ACTIONS(1737), + [anon_sym_override] = ACTIONS(1737), + [anon_sym_private] = ACTIONS(1737), + [anon_sym_protected] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), + }, + [1710] = { + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2731), + [sym_comment] = ACTIONS(34), + }, + [1711] = { + [anon_sym_package] = ACTIONS(1882), + [anon_sym_import] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_object] = ACTIONS(1882), + [anon_sym_class] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_val] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_var] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_def] = ACTIONS(1882), + [anon_sym_abstract] = ACTIONS(1882), + [anon_sym_final] = ACTIONS(1882), + [anon_sym_sealed] = ACTIONS(1882), + [anon_sym_implicit] = ACTIONS(1882), + [anon_sym_lazy] = ACTIONS(1882), + [anon_sym_override] = ACTIONS(1882), + [anon_sym_private] = ACTIONS(1882), + [anon_sym_protected] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), + }, + [1712] = { + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2733), + [sym_comment] = ACTIONS(34), + }, + [1713] = { + [anon_sym_package] = ACTIONS(1890), + [anon_sym_import] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_object] = ACTIONS(1890), + [anon_sym_class] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_val] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_var] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_abstract] = ACTIONS(1890), + [anon_sym_final] = ACTIONS(1890), + [anon_sym_sealed] = ACTIONS(1890), + [anon_sym_implicit] = ACTIONS(1890), + [anon_sym_lazy] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), + }, + [1714] = { + [sym_type_arguments] = STATE(1017), + [sym_arguments] = STATE(1018), + [anon_sym_package] = ACTIONS(2525), + [anon_sym_import] = ACTIONS(2525), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_case] = ACTIONS(2525), + [anon_sym_object] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_val] = ACTIONS(2525), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(2525), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_def] = ACTIONS(2525), + [anon_sym_abstract] = ACTIONS(2525), + [anon_sym_final] = ACTIONS(2525), + [anon_sym_sealed] = ACTIONS(2525), + [anon_sym_implicit] = ACTIONS(2525), + [anon_sym_lazy] = ACTIONS(2525), + [anon_sym_override] = ACTIONS(2525), + [anon_sym_private] = ACTIONS(2525), + [anon_sym_protected] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [sym_operator_identifier] = ACTIONS(1690), + [sym_comment] = ACTIONS(464), + }, + [1715] = { + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), + }, + [1716] = { + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_case] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_else] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), + }, + [1717] = { + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2735), + [sym_comment] = ACTIONS(34), + }, + [1718] = { + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2735), + [sym_comment] = ACTIONS(34), + }, + [1719] = { + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), + }, + [1720] = { + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2737), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), + }, + [1721] = { + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym_LF] = ACTIONS(2741), + [sym_comment] = ACTIONS(464), + }, + [1722] = { + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_match] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), + }, + [1723] = { + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), + }, + [1724] = { + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2743), + [sym_comment] = ACTIONS(34), + }, + [1725] = { + [sym_type_arguments] = STATE(1653), + [sym_arguments] = STATE(1654), + [anon_sym_DOT] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2585), + [sym_operator_identifier] = ACTIONS(2585), + [sym_comment] = ACTIONS(464), + }, + [1726] = { + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_case] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), + }, + [1727] = { + [aux_sym_parameter_types_repeat1] = STATE(1774), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2747), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), + }, + [1728] = { + [sym_type_arguments] = STATE(1653), + [sym_arguments] = STATE(1654), + [anon_sym_DOT] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(2585), + [sym_operator_identifier] = ACTIONS(2585), + [sym_comment] = ACTIONS(464), + }, + [1729] = { + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_match] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), + }, + [1730] = { + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1776), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2749), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), + }, + [1731] = { + [sym_type_arguments] = STATE(1338), + [sym_arguments] = STATE(1339), + [anon_sym_DOT] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_EQ] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [sym_operator_identifier] = ACTIONS(2147), + [sym_comment] = ACTIONS(464), + }, + [1732] = { + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(1640), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), + }, + [1733] = { + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_case] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1475), + [anon_sym_match] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), + }, + [1734] = { + [sym_type_arguments] = STATE(1653), + [sym_arguments] = STATE(1654), + [anon_sym_DOT] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), + }, + [1735] = { + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_case] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_else] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), + }, + [1736] = { + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1737] = { + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), + }, + [1738] = { + [anon_sym_EQ_GT] = ACTIONS(2120), + [anon_sym_COLON] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1739] = { + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), + }, + [1740] = { + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_EQ_GT] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_else] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [sym_identifier] = ACTIONS(1348), + [sym_operator_identifier] = ACTIONS(1348), + [sym_comment] = ACTIONS(464), + }, + [1741] = { + [aux_sym_string_repeat1] = STATE(299), + [sym__string_middle] = ACTIONS(262), + [sym__string_end] = ACTIONS(2753), + [sym_comment] = ACTIONS(34), + }, + [1742] = { + [aux_sym_string_repeat2] = STATE(304), + [sym__multiline_string_middle] = ACTIONS(270), + [sym__multiline_string_end] = ACTIONS(2753), + [sym_comment] = ACTIONS(34), + }, + [1743] = { + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_EQ_GT] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [sym_operator_identifier] = ACTIONS(1360), + [sym_comment] = ACTIONS(464), + }, + [1744] = { + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), + }, + [1745] = { + [aux_sym_block_repeat1] = STATE(660), + [anon_sym_RBRACE] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_LF] = ACTIONS(2759), + [sym_comment] = ACTIONS(464), + }, + [1746] = { + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_EQ_GT] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_match] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [sym_operator_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(464), + }, + [1747] = { + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_EQ_GT] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [sym_operator_identifier] = ACTIONS(1417), + [sym_comment] = ACTIONS(464), + }, + [1748] = { + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2761), + [sym_comment] = ACTIONS(34), + }, + [1749] = { + [sym_type_arguments] = STATE(1684), + [sym_arguments] = STATE(1685), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_EQ_GT] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(2763), + [anon_sym_match] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [sym_operator_identifier] = ACTIONS(2619), + [sym_comment] = ACTIONS(464), + }, + [1750] = { + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_EQ_GT] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [sym_operator_identifier] = ACTIONS(1455), + [sym_comment] = ACTIONS(464), + }, + [1751] = { + [aux_sym_parameter_types_repeat1] = STATE(1784), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2765), + [anon_sym_with] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [sym_operator_identifier] = ACTIONS(1285), + [sym_comment] = ACTIONS(464), + }, + [1752] = { + [sym_type_arguments] = STATE(1684), + [sym_arguments] = STATE(1685), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_EQ_GT] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [sym_identifier] = ACTIONS(2619), + [sym_operator_identifier] = ACTIONS(2619), + [sym_comment] = ACTIONS(464), + }, + [1753] = { + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_EQ_GT] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_match] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [sym_operator_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(464), + }, + [1754] = { + [sym_type_arguments] = STATE(563), + [sym_arguments] = STATE(564), + [aux_sym_tuple_expression_repeat1] = STATE(1786), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2767), + [anon_sym_match] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_operator_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(464), + }, + [1755] = { + [sym_type_arguments] = STATE(1364), + [sym_arguments] = STATE(1365), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_EQ_GT] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [sym_operator_identifier] = ACTIONS(2173), + [sym_comment] = ACTIONS(464), + }, + [1756] = { + [sym_case_clause] = STATE(329), + [aux_sym_case_block_repeat1] = STATE(1671), + [anon_sym_RBRACE] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(942), + [sym_comment] = ACTIONS(34), + }, + [1757] = { + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_EQ_GT] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1475), + [anon_sym_match] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [sym_operator_identifier] = ACTIONS(1477), + [sym_comment] = ACTIONS(464), + }, + [1758] = { + [sym_type_arguments] = STATE(1684), + [sym_arguments] = STATE(1685), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_EQ_GT] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [sym_operator_identifier] = ACTIONS(1483), + [sym_comment] = ACTIONS(464), + }, + [1759] = { + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_EQ_GT] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_else] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [sym_operator_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(464), + }, + [1760] = { + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_EQ_GT] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1761] = { + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_EQ_GT] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), + }, + [1762] = { + [sym_type_arguments] = STATE(1124), + [sym_arguments] = STATE(1125), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(1833), + [sym_identifier] = ACTIONS(2207), + [sym_operator_identifier] = ACTIONS(2207), + [sym_comment] = ACTIONS(464), + }, + [1763] = { + [sym_type_arguments] = STATE(416), + [sym_arguments] = STATE(417), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_match] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_operator_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_LF] = ACTIONS(2771), + [sym_comment] = ACTIONS(464), + }, + [1764] = { + [anon_sym_package] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_trait] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_val] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_final] = ACTIONS(2175), + [anon_sym_sealed] = ACTIONS(2175), + [anon_sym_implicit] = ACTIONS(2175), + [anon_sym_lazy] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), + }, + [1765] = { + [sym_type_arguments] = STATE(1483), + [sym_arguments] = STATE(1484), + [anon_sym_package] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_object] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_val] = ACTIONS(2227), + [anon_sym_EQ] = ACTIONS(2347), + [anon_sym_var] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_def] = ACTIONS(2227), + [anon_sym_abstract] = ACTIONS(2227), + [anon_sym_final] = ACTIONS(2227), + [anon_sym_sealed] = ACTIONS(2227), + [anon_sym_implicit] = ACTIONS(2227), + [anon_sym_lazy] = ACTIONS(2227), + [anon_sym_override] = ACTIONS(2227), + [anon_sym_private] = ACTIONS(2227), + [anon_sym_protected] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2355), + [sym_operator_identifier] = ACTIONS(2355), + [sym_comment] = ACTIONS(464), + }, + [1766] = { + [anon_sym_package] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_object] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_val] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_final] = ACTIONS(2120), + [anon_sym_sealed] = ACTIONS(2120), + [anon_sym_implicit] = ACTIONS(2120), + [anon_sym_lazy] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1767] = { + [anon_sym_package] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_val] = ACTIONS(2233), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_def] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_final] = ACTIONS(2233), + [anon_sym_sealed] = ACTIONS(2233), + [anon_sym_implicit] = ACTIONS(2233), + [anon_sym_lazy] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), + }, + [1768] = { + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_case] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_else] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), + }, + [1769] = { + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_case] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), + }, + [1770] = { + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), + }, + [1771] = { + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_case] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), + }, + [1772] = { + [sym_block] = STATE(1518), + [sym__expression] = STATE(1789), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_case_block] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_generic_function] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_field_expression] = STATE(1518), + [sym_instance_expression] = STATE(1518), + [sym_infix_expression] = STATE(1518), + [sym_prefix_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_string_transform_expression] = STATE(1518), + [sym_string] = STATE(1518), + [sym__simple_string] = ACTIONS(2383), + [sym__string_start] = ACTIONS(2385), + [sym__multiline_string_start] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2399), + [sym_number] = ACTIONS(2401), + [sym_comment] = ACTIONS(34), + }, + [1773] = { + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), + }, + [1774] = { + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2775), + [sym_comment] = ACTIONS(34), + }, + [1775] = { + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), + }, + [1776] = { + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2777), + [sym_comment] = ACTIONS(34), + }, + [1777] = { + [anon_sym_DOT] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), + }, + [1778] = { + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_else] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [sym_identifier] = ACTIONS(1759), + [sym_operator_identifier] = ACTIONS(1759), + [sym_comment] = ACTIONS(464), + }, + [1779] = { + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_EQ_GT] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [sym_operator_identifier] = ACTIONS(1807), + [sym_comment] = ACTIONS(464), + }, + [1780] = { + [sym_package_clause] = STATE(657), + [sym_import_declaration] = STATE(657), + [sym_object_definition] = STATE(657), + [sym_class_definition] = STATE(657), + [sym_trait_definition] = STATE(657), + [sym_val_definition] = STATE(657), + [sym_val_declaration] = STATE(657), + [sym_var_declaration] = STATE(657), + [sym_var_definition] = STATE(657), + [sym_type_definition] = STATE(657), + [sym_function_definition] = STATE(657), + [sym_function_declaration] = STATE(657), + [sym_modifiers] = STATE(215), + [sym_block] = STATE(213), + [sym__expression] = STATE(658), + [sym_if_expression] = STATE(213), + [sym_match_expression] = STATE(213), + [sym_case_block] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_generic_function] = STATE(213), + [sym_call_expression] = STATE(213), + [sym_field_expression] = STATE(213), + [sym_instance_expression] = STATE(213), + [sym_infix_expression] = STATE(213), + [sym_prefix_expression] = STATE(213), + [sym_tuple_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(213), + [sym_string_transform_expression] = STATE(213), + [sym_string] = STATE(213), + [aux_sym_modifiers_repeat1] = STATE(17), + [sym__simple_string] = ACTIONS(330), + [sym__string_start] = ACTIONS(332), + [sym__multiline_string_start] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_case] = ACTIONS(344), + [anon_sym_object] = ACTIONS(346), + [anon_sym_class] = ACTIONS(348), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_val] = ACTIONS(352), + [anon_sym_var] = ACTIONS(354), + [anon_sym_type] = ACTIONS(356), + [anon_sym_def] = ACTIONS(358), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_sealed] = ACTIONS(360), + [anon_sym_implicit] = ACTIONS(360), + [anon_sym_lazy] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_protected] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_if] = ACTIONS(364), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(368), + [sym_identifier] = ACTIONS(370), + [sym_number] = ACTIONS(372), + [sym_comment] = ACTIONS(34), + }, + [1781] = { + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_EQ_GT] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [sym_operator_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(464), + }, + [1782] = { + [sym_block] = STATE(1552), + [sym__expression] = STATE(1793), + [sym_if_expression] = STATE(1552), + [sym_match_expression] = STATE(1552), + [sym_case_block] = STATE(1552), + [sym_assignment_expression] = STATE(1552), + [sym_generic_function] = STATE(1552), + [sym_call_expression] = STATE(1552), + [sym_field_expression] = STATE(1552), + [sym_instance_expression] = STATE(1552), + [sym_infix_expression] = STATE(1552), + [sym_prefix_expression] = STATE(1552), + [sym_tuple_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_string_transform_expression] = STATE(1552), + [sym_string] = STATE(1552), + [sym__simple_string] = ACTIONS(2423), + [sym__string_start] = ACTIONS(2425), + [sym__multiline_string_start] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_TILDE] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [sym_number] = ACTIONS(2441), + [sym_comment] = ACTIONS(34), + }, + [1783] = { + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_EQ_GT] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [sym_operator_identifier] = ACTIONS(1739), + [sym_comment] = ACTIONS(464), + }, + [1784] = { + [aux_sym_parameter_types_repeat1] = STATE(1057), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(2781), + [sym_comment] = ACTIONS(34), + }, + [1785] = { + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_EQ_GT] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [sym_operator_identifier] = ACTIONS(1884), + [sym_comment] = ACTIONS(464), + }, + [1786] = { + [aux_sym_tuple_expression_repeat1] = STATE(839), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(2783), + [sym_comment] = ACTIONS(34), + }, + [1787] = { + [anon_sym_DOT] = ACTIONS(1888), + [anon_sym_EQ_GT] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [sym_operator_identifier] = ACTIONS(1892), + [sym_comment] = ACTIONS(464), + }, + [1788] = { + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), + }, + [1789] = { + [sym_type_arguments] = STATE(1653), + [sym_arguments] = STATE(1654), + [anon_sym_DOT] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_case] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2585), + [sym_operator_identifier] = ACTIONS(2585), + [sym_comment] = ACTIONS(464), + }, + [1790] = { + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1791] = { + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), + }, + [1792] = { + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [sym_operator_identifier] = ACTIONS(2177), + [sym_comment] = ACTIONS(464), + }, + [1793] = { + [sym_type_arguments] = STATE(1684), + [sym_arguments] = STATE(1685), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_EQ_GT] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [sym_operator_identifier] = ACTIONS(2619), + [sym_comment] = ACTIONS(464), + }, + [1794] = { + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_EQ_GT] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_EQ] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [sym_operator_identifier] = ACTIONS(2122), + [sym_comment] = ACTIONS(464), + }, + [1795] = { + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_EQ_GT] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [sym_operator_identifier] = ACTIONS(2235), + [sym_comment] = ACTIONS(464), }, }; @@ -34282,1263 +37227,1363 @@ static TSParseActionEntry ts_parse_actions[] = { [34] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), [36] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(18), [38] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(19), - [40] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(21), - [42] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(22), - [44] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(23), - [46] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(24), - [48] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(25), - [50] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(26), - [52] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(27), - [54] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(28), - [56] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(29), - [58] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(30), - [60] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(31), - [62] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(32), - [64] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(35), - [66] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(36), - [68] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(37), - [70] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(38), + [40] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(20), + [42] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(21), + [44] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(22), + [46] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(23), + [48] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(24), + [50] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(25), + [52] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(26), + [54] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(27), + [56] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(28), + [58] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(29), + [60] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(30), + [62] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(31), + [64] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(34), + [66] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(35), + [68] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(36), + [70] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(37), [72] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_modifiers_repeat1, 1), [74] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), [76] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 1), - [78] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(39), - [80] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(40), - [82] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compilation_unit, 1), - [84] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_modifiers, 1), - [86] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_package_clause, 2), - [88] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(43), - [90] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_declaration, 2), - [92] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(44), - [94] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(45), - [96] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(46), - [98] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47), - [100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 2), - [102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(49), - [104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(50), - [106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(51), - [108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(56), - [110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 1), - [112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 1), - [114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(60), - [116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(62), - [118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_wildcard, 1), - [120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_wildcard, 1), - [122] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(64), - [124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(65), - [126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(66), - [128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(67), - [130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(68), - [132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(69), - [134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(70), - [136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(71), - [138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(73), - [140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(74), - [142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(75), - [144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(76), - [146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(78), - [148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(79), - [150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 2), - [152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(81), - [154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(82), - [156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(83), - [158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(84), - [160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88), - [162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(89), - [164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), - [166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2), - [169] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(3), - [172] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4), - [175] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5), - [178] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6), - [181] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7), - [184] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8), - [187] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(9), - [190] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(10), - [193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(11), - [196] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(12), - [199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_modifiers_repeat1, 2), - [201] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(12), - [204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(90), - [206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(91), - [208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(90), - [210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 3), - [212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(98), - [214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), - [216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(100), - [218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(101), - [220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), - [222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), + [78] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(38), + [80] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(39), + [82] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(40), + [84] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(41), + [86] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(42), + [88] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compilation_unit, 1), + [90] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_modifiers, 1), + [92] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_package_clause, 2), + [94] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_declaration, 2), + [96] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(45), + [98] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(46), + [100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(47), + [102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(48), + [104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 2), + [106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(50), + [108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(51), + [110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(52), + [112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(57), + [114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 1), + [116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 1), + [118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(61), + [120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(63), + [122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_wildcard, 1), + [124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_wildcard, 1), + [126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(65), + [128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(66), + [130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(67), + [132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(68), + [134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(69), + [136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(70), + [138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(71), + [140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(72), + [142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(74), + [144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(75), + [146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(76), + [148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(77), + [150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(79), + [152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(80), + [154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 2), + [156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(82), + [158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(83), + [160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(84), + [162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(85), + [164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(89), + [166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(90), + [168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(91), + [170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(92), + [172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(93), + [174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(94), + [176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(95), + [178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), + [180] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2), + [183] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(3), + [186] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4), + [189] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5), + [192] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6), + [195] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7), + [198] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(8), + [201] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(9), + [204] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(10), + [207] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(11), + [210] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(12), + [213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_modifiers_repeat1, 2), + [215] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(12), + [218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(96), + [220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(97), + [222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 3), [224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(104), - [226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_object_definition, 3), - [228] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(107), - [230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(107), - [232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(109), - [234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(110), - [236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(116), - [238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), - [240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(118), - [242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(120), - [244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 3), - [246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(128), - [248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(129), - [250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), - [252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(131), - [254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(133), - [256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(134), - [258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(135), - [260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(137), - [262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(138), - [264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(139), - [266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(141), - [268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(142), - [270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(143), - [272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(149), - [274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(150), - [276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151), - [278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(152), - [280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), - [282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), - [284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), + [226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(105), + [228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(106), + [230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(107), + [232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(108), + [234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(109), + [236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(110), + [238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_object_definition, 3), + [240] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(113), + [242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(113), + [244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115), + [246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(116), + [248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), + [250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(123), + [252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(124), + [254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(126), + [256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 3), + [258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(134), + [260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(135), + [262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(136), + [264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(137), + [266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(139), + [268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(140), + [270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(141), + [272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(143), + [274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(144), + [276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(145), + [278] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(147), + [280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(148), + [282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(149), + [284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), [286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(156), - [288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(157), - [290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), - [292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(160), - [294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(161), - [296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(162), - [298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(163), - [300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(164), - [302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), - [304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(167), - [306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(173), - [308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(174), - [310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(175), - [312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(178), - [314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(180), - [316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(186), - [318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(187), - [320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(188), - [322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(189), - [324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(190), - [326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(191), + [288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(157), + [290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(158), + [292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), + [294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(160), + [296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(161), + [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), + [300] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(163), + [302] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(164), + [304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(166), + [306] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(167), + [308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(168), + [310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(169), + [312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(170), + [314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(171), + [316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(173), + [318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(179), + [320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(180), + [322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(181), + [324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184), + [326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(186), [328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(192), [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(193), - [332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(194), - [334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(195), + [332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(194), + [334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(195), [336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(196), [338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(197), - [340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(198), - [342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(199), + [340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(198), + [342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(199), [344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(200), [346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(201), - [348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), - [350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(202), - [352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(203), - [354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(204), - [356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(205), - [358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(206), - [360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(207), - [362] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(211), - [364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(218), - [366] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(219), - [368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 3), - [370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), - [372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(222), - [374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [376] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(225), - [378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_stable_identifier, 3), - [380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(227), - [382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_declaration, 4), - [384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_object_definition, 4), - [386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 4), - [388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_template_body, 2), + [348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(202), + [350] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(203), + [352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(204), + [354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(205), + [356] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(206), + [358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(207), + [360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), + [362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(208), + [364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(209), + [366] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(210), + [368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(211), + [370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(212), + [372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(213), + [374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(217), + [376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(224), + [378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(225), + [380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 3), + [382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(227), + [384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), + [386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(231), [390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232), - [392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(233), - [394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(234), - [396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(235), - [398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(236), - [400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(237), - [402] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(238), - [404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(239), - [406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(240), - [408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(241), - [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(242), - [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_parameter, 1), - [414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), - [416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(245), - [418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(247), - [420] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(248), - [422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type, 1, .alias_sequence_id = 1), - [424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type, 1, .alias_sequence_id = 1), - [426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), - [428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), - [430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type, 1, .alias_sequence_id = 1), - [432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), - [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_extends_clause, 2), - [436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_extends_clause, 2), - [438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(257), - [440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(258), - [442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type, 1), - [444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type, 1), - [446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type, 1), - [448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(260), - [450] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(261), - [452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 2), - [454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 1), - [456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(262), - [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(263), - [460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(264), - [462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265), - [464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(267), - [466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(268), - [468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(270), - [470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(271), - [472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), - [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 4), - [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), - [478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_interpolation, 2), - [480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), - [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(279), - [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), - [488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(286), - [490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(287), - [492] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(288), - [494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_pattern, 3), - [496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_pattern, 3), - [498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), - [500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_stable_type_identifier, 3, .alias_sequence_id = 2), - [502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_val_declaration_repeat1, 2), - [504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), - [506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), - [508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_declaration, 4), - [510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_declaration, 4), - [512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_typed_pattern, 3), - [514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(299), - [516] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(300), - [518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(301), - [520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), - [522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 1), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(306), - [526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(309), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(310), - [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(311), - [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(312), - [534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(313), - [536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(314), - [538] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(315), - [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), - [542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(317), - [544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(318), - [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(320), - [548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), - [550] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), - [552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), - [554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 4), - [556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_definition, 4), - [558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(325), - [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(326), - [562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(327), - [564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(328), - [566] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(329), - [568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(330), - [570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 3, .alias_sequence_id = 1), - [572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 3, .alias_sequence_id = 1), - [574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(333), - [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_alternative_pattern, 3), - [578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_alternative_pattern, 3), - [580] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_val_declaration_repeat1, 2), SHIFT_REPEAT(67), - [583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), - [585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), - [587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(340), - [589] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(341), - [591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(343), - [593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 3), - [595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 3), - [597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(344), - [599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_declaration, 4), - [601] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_declaration, 4), - [603] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(346), - [605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 4), - [607] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_definition, 4), - [609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348), - [611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), - [613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 4, .alias_sequence_id = 3), - [615] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_definition, 4, .alias_sequence_id = 3), - [617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(351), - [619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(352), - [621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(352), - [623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), - [625] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), - [627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), - [629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), - [631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_block, 2), - [633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), - [635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(365), - [637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(366), - [639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(367), - [641] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(368), - [643] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(369), - [645] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(370), - [647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(371), - [649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(372), + [392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), + [394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), + [396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), + [398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), + [400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(239), + [402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(240), + [404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(243), + [406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_stable_identifier, 3), + [408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_declaration, 4), + [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_object_definition, 4), + [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 4), + [414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_template_body, 2), + [416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(248), + [418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(249), + [420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(250), + [422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(251), + [424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(252), + [426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(253), + [428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(254), + [430] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(255), + [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), + [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(257), + [436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(258), + [438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(259), + [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(260), + [442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(261), + [444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type_parameter, 1), + [446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(263), + [448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(264), + [450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), + [452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(267), + [454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type, 1, .alias_sequence_id = 1), + [456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type, 1, .alias_sequence_id = 1), + [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), + [460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(274), + [462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type, 1, .alias_sequence_id = 1), + [464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), + [466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_extends_clause, 2), + [468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_extends_clause, 2), + [470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(276), + [472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(277), + [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__type, 1), + [476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__type, 1), + [478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__type, 1), + [480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(279), + [482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(280), + [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 2), + [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 1), + [488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), + [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), + [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(283), + [494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(284), + [496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), + [498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), + [500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(289), + [502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(290), + [504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), + [506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 4), + [508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), + [510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_interpolation, 2), + [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), + [516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(305), + [522] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(306), + [524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(307), + [526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_pattern, 3), + [528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_pattern, 3), + [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(313), + [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_stable_type_identifier, 3, .alias_sequence_id = 2), + [534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_val_declaration_repeat1, 2), + [536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(315), + [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), + [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_declaration, 4), + [542] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_declaration, 4), + [544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_typed_pattern, 3), + [546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(318), + [548] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(319), + [550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(320), + [552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(322), + [554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 1), + [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(325), + [558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(326), + [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), + [562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), + [564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(333), + [566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(334), + [568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(336), + [572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), + [574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(339), + [578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(340), + [580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), + [582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), + [584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), + [586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), + [588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 4), + [590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_definition, 4), + [592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347), + [594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348), + [596] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(349), + [598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), + [600] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(351), + [602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(352), + [604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 3, .alias_sequence_id = 1), + [606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 3, .alias_sequence_id = 1), + [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), + [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_alternative_pattern, 3), + [612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_alternative_pattern, 3), + [614] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_val_declaration_repeat1, 2), SHIFT_REPEAT(68), + [617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), + [619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), + [621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(362), + [623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(363), + [625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(365), + [627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 3), + [629] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 3), + [631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(366), + [633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_declaration, 4), + [635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_declaration, 4), + [637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(368), + [639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 4), + [641] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_definition, 4), + [643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(370), + [645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(371), + [647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 4, .alias_sequence_id = 3), + [649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_definition, 4, .alias_sequence_id = 3), [651] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(373), - [653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(374), - [655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(380), - [657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(381), - [659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(383), - [661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), - [663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(385), - [665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(386), - [667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(387), - [669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(388), - [671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(389), - [673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(390), - [675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), - [677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), - [679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 4), - [681] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declaration, 4), - [683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(81), - [685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(396), - [687] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(397), - [689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(398), - [691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), - [693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [695] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameters, 2), - [699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter, 1), - [701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(402), - [703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), - [705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(404), - [707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(405), - [709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(409), - [711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(396), - [713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), - [715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), - [717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), - [719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 5), - [721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(418), - [723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), - [725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), - [727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), - [729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), + [653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(374), + [655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(374), + [657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), + [659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(380), + [661] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(381), + [663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), + [665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_block, 2), + [667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), + [669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(387), + [671] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(388), + [673] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(389), + [675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(390), + [677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(391), + [679] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(392), + [681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(393), + [683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(394), + [685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(395), + [687] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(396), + [689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(402), + [691] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(403), + [693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(405), + [695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(406), + [697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(407), + [699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(408), + [701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(409), + [703] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(410), + [705] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(411), + [707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(412), + [709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(413), + [711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(414), + [713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(415), + [715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(418), + [717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), + [719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 4), + [721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declaration, 4), + [723] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(82), + [725] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(421), + [727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(422), + [729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(423), [731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(426), - [733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), - [735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), - [737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), - [739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), - [741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), - [743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), - [745] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(437), - [747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_template_body, 3), - [749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(99), - [752] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(100), - [755] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(101), - [758] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(102), - [761] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(103), - [764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(104), - [767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_parameters, 3), - [769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), - [771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_types, 2), - [773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), - [775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), - [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), - [779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), - [781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(446), - [783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(447), - [785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(447), - [787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), - [789] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(451), - [791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_generic_type, 2, .alias_sequence_id = 1), - [793] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_generic_type, 2, .alias_sequence_id = 1), - [795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_generic_type, 2, .alias_sequence_id = 1), - [797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_generic_type, 2), - [799] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_generic_type, 2), - [801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_generic_type, 2), - [803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 2), - [805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), - [807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), - [809] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(459), - [811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 3), - [813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(469), - [817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 5), - [819] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(474), - [821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(475), - [823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), - [825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 4), - [827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 4), - [829] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(130), - [832] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(477), - [834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(478), - [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat2, 2), - [838] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(135), - [841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_class_pattern_repeat1, 2), - [843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(480), - [845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), - [847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_pattern, 3), - [849] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(483), - [851] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(484), - [853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), - [855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple_pattern, 4), - [857] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple_pattern, 4), - [859] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_class_pattern_repeat1, 2), SHIFT_REPEAT(137), - [862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(487), - [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), - [866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_block, 2), - [868] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_block, 2), - [870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(496), - [872] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(497), - [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), - [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), - [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), - [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), - [882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(512), - [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), - [886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), - [888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(515), - [890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(516), - [892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(520), - [894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(521), - [896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522), - [898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), - [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), - [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), - [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), - [906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), - [908] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(529), - [910] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(530), - [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), - [914] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(532), - [916] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(533), - [918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_instance_expression, 2), - [920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_instance_expression, 2), - [922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_instance_expression, 2), - [924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_prefix_expression, 2), - [926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_prefix_expression, 2), - [928] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_prefix_expression, 2), - [930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string_transform_expression, 2), - [932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string_transform_expression, 2), - [934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string_transform_expression, 2), - [936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), - [938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), - [940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(540), - [942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_generic_function, 2), - [944] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_generic_function, 2), - [946] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_generic_function, 2), - [948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 2), - [950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 2), - [952] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 2), - [954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 4, .alias_sequence_id = 1), - [956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 4, .alias_sequence_id = 1), - [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), - [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_declaration, 5), - [962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_declaration, 5), - [964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(545), - [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 4), - [968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 4), - [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_declaration, 5), - [974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_declaration, 5), - [976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), - [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 5, .alias_sequence_id = 3), - [980] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_definition, 5, .alias_sequence_id = 3), - [982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), - [984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_package_clause, 2), - [986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), - [988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(561), - [990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_import_declaration, 2), - [992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(562), - [994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(563), - [996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(565), - [998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(566), - [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [1002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(567), - [1004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 2), - [1006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(569), - [1008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(570), - [1010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(571), - [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), - [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), - [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(582), - [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), - [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), - [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), - [1026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(589), - [1028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 2), - [1030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(590), - [1032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(591), - [1034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(592), - [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), - [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), - [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), - [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), - [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(601), - [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(602), - [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(603), - [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(604), - [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), - [1054] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(606), - [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(607), - [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_block, 3), - [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), - [1062] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(609), - [1064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(612), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), - [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(615), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(616), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(621), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(624), - [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameters, 3), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), - [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 5), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declaration, 5), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(635), - [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(640), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_selectors, 3), - [1100] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(642), - [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(643), - [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 6), - [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(648), - [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(654), - [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), - [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), - [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), - [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), - [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(665), - [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(666), - [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), - [1126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(668), - [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(669), - [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(677), - [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), - [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(684), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), - [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(694), - [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_parameters, 4), - [1150] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(244), - [1153] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(696), - [1155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_types, 3), - [1157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), - [1159] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_stable_type_identifier, 3, .alias_sequence_id = 2), - [1161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_stable_type_identifier, 3, .alias_sequence_id = 2), - [1163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), - [1165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(705), - [1167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(706), - [1169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(707), - [1171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(707), - [1173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), - [1175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_type, 3), - [1177] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_type, 3), - [1179] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_type, 3), - [1181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_infix_type, 3), - [1183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_infix_type, 3), - [1185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_infix_type, 3), - [1187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_type, 3), - [1189] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_type, 3), - [1191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), - [1193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), - [1195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 3), - [1197] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(715), - [1199] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(716), - [1201] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(717), - [1203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719), - [1205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_class_parameters_repeat1, 2), - [1207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 4), - [1209] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_class_parameters_repeat1, 2), SHIFT_REPEAT(264), - [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), - [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), - [1216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(722), - [1218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(723), - [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), - [1222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(724), - [1224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(725), - [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(726), - [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(731), - [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 6), - [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_definition, 6), - [1234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), - [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_block, 3), - [1240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_block, 3), - [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), - [1244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(734), - [1246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(735), - [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(736), - [1250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(739), - [1252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(740), - [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), - [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), - [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), - [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), - [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), - [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), - [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(749), - [1268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(750), - [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), - [1272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(752), - [1274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(753), - [1276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(755), - [1278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), - [1280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), - [1282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), - [1284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), - [1286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), - [1288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), - [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(767), - [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(768), - [1294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(769), - [1296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), - [1298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_expression, 3, .fragile = true), - [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_expression, 3, .fragile = true), - [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), - [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), - [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(782), - [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), - [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(784), - [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(785), - [1314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(786), - [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_expression, 3), - [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_expression, 3), - [1320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_expression, 3), - [1322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), - [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), - [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), - [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_arguments, 2), - [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_arguments, 2), - [1332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_arguments, 2), - [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791), - [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), - [1338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), - [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_match_expression, 3), - [1342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_match_expression, 3), - [1344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_match_expression, 3), - [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_infix_expression, 3), - [1348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_infix_expression, 3), - [1350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_infix_expression, 3), - [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 5, .alias_sequence_id = 1), - [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 5, .alias_sequence_id = 1), - [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), - [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 5), - [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 5), - [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 6), - [1364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_definition, 6), - [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(799), - [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), - [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(802), - [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), - [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(804), - [1376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(802), - [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), - [1380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(806), - [1382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(807), - [1384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 3), - [1386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), - [1388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_object_definition, 3), - [1390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(816), - [1392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), - [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 3), - [1396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(826), - [1398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), - [1400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), - [1402] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(839), - [1404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [1406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), - [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(849), - [1410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), - [1412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 3), - [1414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(858), - [1416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(859), - [1418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), - [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), - [1424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(873), - [1426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_expression, 3, .fragile = true), - [1428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(874), - [1430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(875), - [1432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(876), - [1434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(877), - [1436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(878), - [1438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(879), - [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_block, 4), - [1442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_block_repeat1, 2), - [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(882), - [1446] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(883), - [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(884), - [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(886), - [1453] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), - [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), - [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), - [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), - [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), - [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter, 3), - [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(894), - [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameters_repeat1, 2), - [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameters, 4), - [1473] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(404), - [1476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 6), - [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declaration, 6), - [1480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(896), - [1482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_import_selectors_repeat1, 2), - [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_renamed_identifier, 3), - [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_selectors, 4), - [1488] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_import_selectors_repeat1, 2), SHIFT_REPEAT(412), - [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 7), - [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), - [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), - [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(904), - [1499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(905), - [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), - [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), - [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), - [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(911), - [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(912), - [1511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), - [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), - [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), - [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), - [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), - [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(928), - [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), - [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(930), - [1527] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(931), - [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(935), - [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), - [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), - [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(940), - [1537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(941), - [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), - [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(948), - [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(949), - [1549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(950), - [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), - [1553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), - [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), - [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), - [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_types_repeat1, 2), - [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_types, 4), - [1563] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_types_repeat1, 2), SHIFT_REPEAT(444), - [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_arguments, 3), - [1568] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_arguments, 3), - [1570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_arguments, 3), - [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), - [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 4), - [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(964), - [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(965), - [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), - [1582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(972), - [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), - [1586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(974), - [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), - [1590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 4), - [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_block, 4), - [1594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_block, 4), - [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), - [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), - [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), - [1602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(979), - [1604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(980), - [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), - [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), - [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), - [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), - [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(994), - [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), - [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), - [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(997), - [1622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(998), - [1624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [1626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), - [1628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [1630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), - [1632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple_expression, 4), - [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple_expression, 4), - [1636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_tuple_expression, 4), - [1638] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(510), - [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1007), - [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1008), - [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), - [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [1649] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1015), - [1651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1016), - [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), - [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1021), - [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_arguments, 3), - [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_arguments, 3), - [1667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_arguments, 3), - [1669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), - [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_block, 2), - [1673] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_block, 2), - [1675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_block, 2), - [1677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1032), - [1679] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1033), - [1681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_block_repeat1, 1), - [1683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), - [1685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), - [1687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), - [1689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_stable_identifier, 3), - [1691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1038), - [1693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_wildcard, 1), - [1695] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_import_declaration, 4), - [1697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), - [1699] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_object_definition, 4), - [1701] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 4), - [1703] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_template_body, 2), - [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), - [1707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1045), - [1709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1047), - [1711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1048), - [1713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_extends_clause, 2), - [1715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1050), - [1717] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1051), - [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), - [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), - [1723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 2), - [1725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), - [1727] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 4), - [1729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1057), - [1731] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1058), - [1733] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_declaration, 4), - [1735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_typed_pattern, 3), - [1737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1060), - [1739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1061), - [1741] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1062), - [1743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057), - [1745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), - [1747] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 4), - [1749] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1060), - [1751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_declaration, 4), - [1753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1066), - [1755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 4), - [1757] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1066), - [1759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1068), - [1761] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1069), - [1763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 4, .alias_sequence_id = 3), - [1765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1071), - [1767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1072), - [1769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), - [1771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), - [1773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1076), - [1775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1077), - [1777] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1079), - [1779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1080), - [1781] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 4), - [1783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1082), - [1785] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1083), - [1787] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1084), - [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), - [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), - [1793] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [1795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameters, 2), - [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), - [1799] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1092), - [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), - [1803] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1096), - [1805] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1097), - [1807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), - [1809] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1102), - [1811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), - [1813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), - [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_block, 5), - [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), - [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), - [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), - [1823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), - [1825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 7), - [1827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 7), - [1829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 7), - [1831] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declaration, 7), - [1833] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1120), - [1835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1122), - [1837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1127), - [1839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), - [1841] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1136), - [1843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1137), - [1845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), - [1847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), - [1849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), - [1851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), - [1853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), - [1855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), - [1857] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1146), - [1859] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1147), - [1861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1148), - [1863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1149), - [1865] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1150), - [1867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1152), - [1869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), - [1871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), - [1873] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1161), - [1875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1166), - [1877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1172), - [1879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), - [1881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), - [1883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1176), - [1885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_arguments, 4), - [1887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_arguments, 4), - [1889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_arguments, 4), - [1891] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_types_repeat1, 2), SHIFT_REPEAT(704), - [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), - [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 5), - [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), - [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_block, 5), - [1902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_block, 5), - [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), - [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), - [1908] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1185), - [1910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1186), - [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), - [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1191), - [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), - [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), - [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), - [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), - [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), - [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1204), - [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1205), - [1930] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1206), - [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), - [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), - [1936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1208), - [1938] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1209), - [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), - [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1211), - [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), - [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), - [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_expression, 5, .fragile = true), - [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_expression, 5, .fragile = true), - [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), - [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_arguments, 4), - [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_arguments, 4), - [1958] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_arguments, 4), - [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), - [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), - [1964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), - [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_block, 3), - [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_block, 3), - [1970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_block, 3), - [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_block_repeat1, 2), - [1974] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_block_repeat1, 2), SHIFT_REPEAT(794), - [1977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), - [1979] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 5), - [1981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_template_body, 3), - [1983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_parameters, 3), - [1985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), - [1987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1227), - [1989] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 3), - [1991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), - [1993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 5), - [1995] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1233), - [1997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_declaration, 5), - [1999] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_declaration, 5), - [2001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1240), - [2003] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 5, .alias_sequence_id = 3), - [2005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), - [2007] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1245), - [2009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1246), - [2011] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1247), - [2013] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [2015] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameters, 3), - [2017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1253), - [2019] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 5), - [2021] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1254), - [2023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), - [2025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258), - [2027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1258), - [2029] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1259), - [2031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), - [2033] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1261), - [2035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262), - [2037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1264), - [2039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_expression, 5, .fragile = true), - [2041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), - [2043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1269), - [2045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter, 5), - [2047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 8), - [2049] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 8), - [2051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 8), - [2053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1271), - [2055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), - [2057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), - [2059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), - [2061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1276), - [2063] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1277), - [2065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), - [2067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), - [2069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), - [2071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), - [2073] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1291), - [2075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), - [2077] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1293), - [2079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1294), - [2081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1295), - [2083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), - [2085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), - [2087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), - [2089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304), - [2091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1306), - [2093] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1309), - [2095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 6), - [2097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1311), - [2099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1312), - [2101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1313), - [2103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1313), - [2105] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1314), - [2107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315), - [2109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1316), - [2111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), - [2113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), - [2115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), - [2117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1326), - [2119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), - [2121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), - [2123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), - [2125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), - [2127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332), - [2129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), - [2131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1334), - [2133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), - [2135] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1336), - [2137] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1337), - [2139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1338), - [2141] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1339), - [2143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1340), - [2145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1342), - [2147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), - [2149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), - [2151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350), - [2153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), - [2155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), - [2157] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1353), - [2159] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1354), - [2161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), - [2163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1356), - [2165] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1357), - [2167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), - [2169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_import_selectors, 3), - [2171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360), - [2173] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 6), - [2175] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_parameters, 4), - [2177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), - [2179] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_type, 3), - [2181] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 4), - [2183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1364), - [2185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 6), - [2187] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 6), - [2189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), - [2191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), - [2193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), - [2195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [2197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameters, 4), - [2199] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 6), - [2201] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1372), - [2203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1374), - [2205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1376), - [2207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), - [2209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378), - [2211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 9), - [2213] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 9), - [2215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), - [2217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), - [2219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), - [2221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), - [2223] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1387), - [2225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1388), - [2227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390), - [2229] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1393), - [2231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1396), - [2233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), - [2235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), - [2237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), - [2239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), - [2241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), - [2243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), - [2245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1408), - [2247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), - [2249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1411), - [2251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), - [2253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1413), - [2255] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1414), - [2257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1417), - [2259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), - [2261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_clause, 4), - [2263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), - [2265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1427), - [2267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), - [2269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1429), - [2271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1430), - [2273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1433), - [2275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), - [2277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1436), - [2279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1437), - [2281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1439), - [2283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), - [2285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), - [2287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_guard, 2), - [2289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1451), - [2291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1452), - [2293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453), - [2295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1454), - [2297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1455), - [2299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_import_selectors, 4), - [2301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 7), - [2303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), - [2305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460), - [2307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), - [2309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), - [2311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 7), - [2313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 7), - [2315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1465), - [2317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1467), - [2319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468), - [2321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1468), - [2323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1469), - [2325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), - [2327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1471), - [2329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), - [2331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1474), - [2333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1476), - [2335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1480), - [2337] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1483), - [2339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1484), - [2341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1486), - [2343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1488), - [2345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), - [2347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), - [2349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1491), - [2351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1492), - [2353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1493), - [2355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1494), - [2357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495), - [2359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1496), - [2361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1497), - [2363] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1499), - [2365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), - [2367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), - [2369] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1507), - [2371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512), - [2373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1515), - [2375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1516), - [2377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), - [2379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), - [2381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), - [2383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522), - [2385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), - [2387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), - [2389] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1525), - [2391] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1526), - [2393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527), - [2395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1528), - [2397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1529), - [2399] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1531), - [2401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), - [2403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1536), - [2405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_clause, 5), - [2407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 8), - [2409] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 8), - [2411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), - [2413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1542), - [2415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), - [2417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), - [2419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1545), - [2421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), - [2423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1546), - [2425] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1547), - [2427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1548), - [2429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), - [2431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), - [2433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560), - [2435] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1561), - [2437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), - [2439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1563), - [2441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1564), - [2443] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1565), - [2445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), - [2447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570), - [2449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1572), - [2451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), - [2453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576), - [2455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), - [2457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1577), - [2459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1578), - [2461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), - [2463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), - [2465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1590), - [2467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1591), - [2469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1592), - [2471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), - [2473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1594), - [2475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1595), - [2477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1596), - [2479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1599), - [2481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1601), - [2483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), - [2485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 9), - [2487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1605), - [2489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1606), - [2491] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1609), - [2493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1610), - [2495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), - [2497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1615), - [2499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), - [2501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), - [2503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1624), - [2505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1625), - [2507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), - [2509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), - [2511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1628), - [2513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), - [2515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1632), - [2517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1633), - [2519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1635), - [2521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1638), - [2523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1641), - [2525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1644), - [2527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), - [2529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1648), - [2531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1649), - [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1650), - [2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), - [2537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1651), - [2539] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1652), - [2541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1653), - [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1654), - [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), - [2547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), - [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1659), - [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1661), - [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1662), - [2555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1662), - [2557] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1663), - [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1664), - [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1665), - [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1666), - [2565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1668), - [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1670), - [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1672), - [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1674), - [2573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1675), - [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1676), - [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1677), - [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1679), - [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1680), - [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1681), + [733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [735] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameters, 2), + [739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter, 1), + [741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), + [743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), + [745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), + [747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), + [749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), + [751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), + [753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), + [757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), + [759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), + [761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448), + [763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), + [765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 5), + [767] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(453), + [769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), + [771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), + [773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), + [775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), + [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), + [779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), + [781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(464), + [783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(465), + [785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), + [787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), + [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), + [791] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(472), + [793] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(473), + [795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(474), + [797] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(475), + [799] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(476), + [801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(477), + [803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_template_body, 3), + [805] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(105), + [808] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(106), + [811] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(107), + [814] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(108), + [817] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(109), + [820] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(110), + [823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_parameters, 3), + [825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), + [827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_types, 2), + [829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), + [831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(482), + [833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(484), + [835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), + [837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(486), + [839] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(487), + [841] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(487), + [843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [845] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(491), + [847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_generic_type, 2, .alias_sequence_id = 1), + [849] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_generic_type, 2, .alias_sequence_id = 1), + [851] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_generic_type, 2, .alias_sequence_id = 1), + [853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_generic_type, 2), + [855] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_generic_type, 2), + [857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_generic_type, 2), + [859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 2), + [861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497), + [863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(498), + [865] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), + [867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 3), + [869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), + [871] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(509), + [873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 5), + [875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(514), + [877] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(515), + [879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), + [881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 4), + [883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 4), + [885] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(136), + [888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(517), + [890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(518), + [892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat2, 2), + [894] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(141), + [897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_class_pattern_repeat1, 2), + [899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), + [901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(521), + [903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_pattern, 3), + [905] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(523), + [907] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(524), + [909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), + [911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple_pattern, 4), + [913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple_pattern, 4), + [915] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_class_pattern_repeat1, 2), SHIFT_REPEAT(143), + [918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(527), + [920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), + [922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_block, 2), + [924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_block, 2), + [926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(386), + [928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(387), + [930] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(536), + [932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), + [934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(538), + [936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(539), + [938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_block_repeat1, 1), + [940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(541), + [942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), + [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), + [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), + [948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), + [950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), + [952] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(558), + [954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), + [956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), + [960] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(562), + [962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(566), + [964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(567), + [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), + [968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), + [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571), + [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), + [974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), + [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), + [978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(575), + [980] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(576), + [982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), + [984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(578), + [986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(579), + [988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_instance_expression, 2), + [990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_instance_expression, 2), + [992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_instance_expression, 2), + [994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_prefix_expression, 2), + [996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_prefix_expression, 2), + [998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_prefix_expression, 2), + [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string_transform_expression, 2), + [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string_transform_expression, 2), + [1004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string_transform_expression, 2), + [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(581), + [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), + [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), + [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_generic_function, 2), + [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_generic_function, 2), + [1016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_generic_function, 2), + [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 2), + [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 2), + [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), + [1024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 2), + [1026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 4, .alias_sequence_id = 1), + [1028] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 4, .alias_sequence_id = 1), + [1030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), + [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_declaration, 5), + [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_declaration, 5), + [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(592), + [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 4), + [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 4), + [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), + [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_declaration, 5), + [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_declaration, 5), + [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(599), + [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 5, .alias_sequence_id = 3), + [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_definition, 5, .alias_sequence_id = 3), + [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), + [1056] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_package_clause, 2), + [1058] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(607), + [1060] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_import_declaration, 2), + [1062] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(608), + [1064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(609), + [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), + [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), + [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(613), + [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1074] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(614), + [1076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 2), + [1078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(616), + [1080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(617), + [1082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(618), + [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), + [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), + [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), + [1098] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(636), + [1100] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 2), + [1102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(637), + [1104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(638), + [1106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(639), + [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(643), + [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(645), + [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(646), + [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), + [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(648), + [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(649), + [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(650), + [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(651), + [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), + [1126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(653), + [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(654), + [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_block, 3), + [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), + [1134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(656), + [1136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(659), + [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), + [1140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(662), + [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(663), + [1144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(664), + [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(665), + [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(666), + [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(667), + [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(668), + [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), + [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673), + [1158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198), + [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(677), + [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameters, 3), + [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), + [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 5), + [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declaration, 5), + [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(688), + [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), + [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(692), + [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 5), + [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_definition, 5), + [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(694), + [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 5), + [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_definition, 5), + [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 5, .alias_sequence_id = 2), + [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_definition, 5, .alias_sequence_id = 2), + [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), + [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), + [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(698), + [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_selectors, 3), + [1200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(700), + [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), + [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 6), + [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(706), + [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(712), + [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), + [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719), + [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), + [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), + [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), + [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(723), + [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), + [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), + [1226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(726), + [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(727), + [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), + [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), + [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(735), + [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), + [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(742), + [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), + [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), + [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(752), + [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(753), + [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(754), + [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), + [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), + [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), + [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), + [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_parameters, 4), + [1264] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(263), + [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(764), + [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_types, 3), + [1271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(769), + [1273] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_stable_type_identifier, 3, .alias_sequence_id = 2), + [1275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_stable_type_identifier, 3, .alias_sequence_id = 2), + [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), + [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(773), + [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(774), + [1283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(775), + [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(775), + [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), + [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_type, 3), + [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_type, 3), + [1293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_type, 3), + [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_infix_type, 3), + [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_infix_type, 3), + [1299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_infix_type, 3), + [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_type, 3), + [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_type, 3), + [1305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), + [1307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), + [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 3), + [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(783), + [1313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(784), + [1315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(785), + [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), + [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_class_parameters_repeat1, 2), + [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 4), + [1323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_class_parameters_repeat1, 2), SHIFT_REPEAT(283), + [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), + [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), + [1330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(790), + [1332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(791), + [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), + [1336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(792), + [1338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(793), + [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(794), + [1342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(799), + [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 6), + [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_definition, 6), + [1348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), + [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), + [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), + [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), + [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_block, 3), + [1360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_block, 3), + [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), + [1364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(806), + [1366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(807), + [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_block, 3), + [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_block, 3), + [1372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_block, 3), + [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_block_repeat1, 2), + [1376] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_block_repeat1, 2), SHIFT_REPEAT(542), + [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), + [1381] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(811), + [1383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(812), + [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), + [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), + [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817), + [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), + [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), + [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), + [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), + [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(822), + [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(823), + [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), + [1405] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(825), + [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(826), + [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(828), + [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), + [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), + [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), + [1417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), + [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(334), + [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), + [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(841), + [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [1429] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(843), + [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), + [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_expression, 3, .fragile = true), + [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_expression, 3, .fragile = true), + [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), + [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), + [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(857), + [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), + [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(859), + [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(860), + [1449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(861), + [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_field_expression, 3), + [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_field_expression, 3), + [1455] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_field_expression, 3), + [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), + [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), + [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_assignment_expression, 3, .fragile = true), + [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_arguments, 2), + [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_arguments, 2), + [1467] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_arguments, 2), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), + [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_match_expression, 3), + [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_match_expression, 3), + [1477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_match_expression, 3), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_infix_expression, 3), + [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_infix_expression, 3), + [1483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_infix_expression, 3), + [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), + [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call_expression, 3), + [1489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_call_expression, 3), + [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 5, .alias_sequence_id = 1), + [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 5, .alias_sequence_id = 1), + [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), + [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_class_pattern, 5), + [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_class_pattern, 5), + [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 6), + [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_definition, 6), + [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), + [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), + [1511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(875), + [1513] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(876), + [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [1517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(878), + [1519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(879), + [1521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 3), + [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), + [1525] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_object_definition, 3), + [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(888), + [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), + [1531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 3), + [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(898), + [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), + [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), + [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(911), + [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), + [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), + [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(921), + [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), + [1549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 3), + [1551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(930), + [1553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(931), + [1555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), + [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), + [1561] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(946), + [1563] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_expression, 3, .fragile = true), + [1565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(947), + [1567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(948), + [1569] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(949), + [1571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(950), + [1573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(951), + [1575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(952), + [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_block, 4), + [1579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_block_repeat1, 2), + [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), + [1583] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(956), + [1586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(957), + [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), + [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), + [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), + [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), + [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), + [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), + [1602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), + [1604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_assignment_expression, 3, .fragile = true), + [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), + [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), + [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(974), + [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), + [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter, 3), + [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(976), + [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameters_repeat1, 2), + [1622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameters, 4), + [1624] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(429), + [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 6), + [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declaration, 6), + [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(978), + [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_declaration, 6), + [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_declaration, 6), + [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_declaration, 6), + [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_declaration, 6), + [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 6, .alias_sequence_id = 2), + [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_definition, 6, .alias_sequence_id = 2), + [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_import_selectors_repeat1, 2), + [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_renamed_identifier, 3), + [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_selectors, 4), + [1651] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_import_selectors_repeat1, 2), SHIFT_REPEAT(447), + [1654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 7), + [1656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), + [1658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), + [1660] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(988), + [1662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(989), + [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), + [1666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), + [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), + [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(995), + [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), + [1674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(997), + [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), + [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), + [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), + [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), + [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1013), + [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), + [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1015), + [1690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1016), + [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1020), + [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), + [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), + [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1025), + [1700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1026), + [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), + [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), + [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), + [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1033), + [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1034), + [1712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1035), + [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), + [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), + [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), + [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), + [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), + [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), + [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_types_repeat1, 2), + [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter_types, 4), + [1732] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_types_repeat1, 2), SHIFT_REPEAT(484), + [1735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_arguments, 3), + [1737] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_arguments, 3), + [1739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_arguments, 3), + [1741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [1743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 4), + [1745] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1059), + [1747] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1060), + [1749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), + [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), + [1753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), + [1755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), + [1757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), + [1759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 4), + [1761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), + [1763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), + [1765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), + [1767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), + [1769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), + [1771] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1077), + [1773] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1078), + [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), + [1777] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1080), + [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1081), + [1781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1083), + [1783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), + [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), + [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1094), + [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1095), + [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [1799] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1097), + [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1098), + [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), + [1805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_block, 4), + [1807] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_block, 4), + [1809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), + [1811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), + [1813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), + [1815] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1103), + [1817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1104), + [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), + [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [1823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), + [1825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), + [1827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1119), + [1829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), + [1831] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1121), + [1833] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1122), + [1835] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1123), + [1837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [1839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), + [1841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), + [1843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1130), + [1845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple_expression, 4), + [1847] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple_expression, 4), + [1849] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_tuple_expression, 4), + [1851] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(556), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1131), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1132), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), + [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), + [1862] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1139), + [1864] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1140), + [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), + [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), + [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1146), + [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), + [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1152), + [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(573), + [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), + [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_arguments, 3), + [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_arguments, 3), + [1884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_arguments, 3), + [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), + [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_block, 2, .fragile = true), + [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_block, 2, .fragile = true), + [1892] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_block, 2, .fragile = true), + [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1158), + [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1159), + [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1160), + [1900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_wildcard, 1), + [1902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_stable_identifier, 3), + [1904] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_import_declaration, 4), + [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1162), + [1908] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_object_definition, 4), + [1910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 4), + [1912] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_template_body, 2), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1166), + [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [1918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1169), + [1920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1170), + [1922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_extends_clause, 2), + [1924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1172), + [1926] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1173), + [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), + [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), + [1932] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 2), + [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1176), + [1936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 4), + [1938] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1179), + [1940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1180), + [1942] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_declaration, 4), + [1944] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_typed_pattern, 3), + [1946] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1182), + [1948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1183), + [1950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1184), + [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), + [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [1956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 4), + [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1182), + [1960] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_declaration, 4), + [1962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1188), + [1964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 4), + [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1188), + [1968] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1190), + [1970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1191), + [1972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 4, .alias_sequence_id = 3), + [1974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1193), + [1976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1194), + [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196), + [1982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1198), + [1984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1199), + [1986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1201), + [1988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1202), + [1990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 4), + [1992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1204), + [1994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1205), + [1996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1206), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), + [2002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [2004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameters, 2), + [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), + [2008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1214), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), + [2012] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1218), + [2014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1219), + [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1225), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), + [2026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(648), + [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_block, 5), + [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), + [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), + [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), + [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 7), + [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 7), + [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 7), + [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_val_definition, 7), + [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 7), + [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_var_definition, 7), + [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 7), + [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_declaration, 7), + [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1253), + [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1255), + [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1260), + [2064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), + [2066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1269), + [2068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1270), + [2070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), + [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), + [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), + [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), + [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), + [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1280), + [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1281), + [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), + [2090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1283), + [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1284), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1286), + [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(721), + [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1296), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1301), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1307), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1310), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1312), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315), + [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307), + [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1316), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type_arguments, 4), + [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_type_arguments, 4), + [2122] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_arguments, 4), + [2124] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_parameter_types_repeat1, 2), SHIFT_REPEAT(772), + [2127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), + [2129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 5), + [2131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), + [2133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1323), + [2135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332), + [2137] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_clause, 4), + [2139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), + [2141] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1334), + [2143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), + [2145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1336), + [2147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1337), + [2149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1340), + [2151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1341), + [2153] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1343), + [2155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1344), + [2157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), + [2159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), + [2161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), + [2163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_guard, 2), + [2165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), + [2167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1360), + [2169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361), + [2171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1362), + [2173] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1363), + [2175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_block, 5), + [2177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_block, 5), + [2179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), + [2181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), + [2183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1371), + [2185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1372), + [2187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1374), + [2189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), + [2191] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1378), + [2193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), + [2195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), + [2197] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(820), + [2199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1388), + [2201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), + [2203] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1391), + [2205] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1392), + [2207] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1393), + [2209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1394), + [2211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1395), + [2213] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1395), + [2215] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1396), + [2217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), + [2219] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1398), + [2221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), + [2223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), + [2225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_expression, 5, .fragile = true), + [2227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_expression, 5, .fragile = true), + [2229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), + [2231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_arguments, 4), + [2233] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_arguments, 4), + [2235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_arguments, 4), + [2237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), + [2239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 5), + [2241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_template_body, 3), + [2243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_parameters, 3), + [2245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), + [2247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1409), + [2249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 3), + [2251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), + [2253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_trait_definition, 5), + [2255] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1415), + [2257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_declaration, 5), + [2259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_declaration, 5), + [2261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1422), + [2263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 5, .alias_sequence_id = 3), + [2265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), + [2267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1427), + [2269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1428), + [2271] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1429), + [2273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [2275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameters, 3), + [2277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), + [2279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 5), + [2281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1436), + [2283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1439), + [2285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), + [2287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1440), + [2289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1441), + [2291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), + [2293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1443), + [2295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), + [2297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), + [2299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_expression, 5, .fragile = true), + [2301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1448), + [2303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1450), + [2305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 5), + [2307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1450), + [2309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1452), + [2311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 5), + [2313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1452), + [2315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 5, .alias_sequence_id = 2), + [2317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1455), + [2319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameter, 5), + [2321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 8), + [2323] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 8), + [2325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 8), + [2327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), + [2329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), + [2331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), + [2333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), + [2335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1462), + [2337] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1463), + [2339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), + [2341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1467), + [2343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1476), + [2345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), + [2347] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1478), + [2349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), + [2351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1480), + [2353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1481), + [2355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1482), + [2357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), + [2359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1487), + [2361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), + [2363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), + [2365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1492), + [2367] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1495), + [2369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_parameter, 6), + [2371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), + [2373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), + [2375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1503), + [2377] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1504), + [2379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), + [2381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), + [2383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1509), + [2385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1510), + [2387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511), + [2389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512), + [2391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), + [2393] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1514), + [2395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1515), + [2397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1516), + [2399] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1517), + [2401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1518), + [2403] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1520), + [2405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), + [2407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), + [2409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1075), + [2411] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1529), + [2413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), + [2415] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1537), + [2417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1538), + [2419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), + [2421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), + [2423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), + [2425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), + [2427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1545), + [2429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), + [2431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1547), + [2433] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1548), + [2435] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1549), + [2437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1550), + [2439] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1551), + [2441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1552), + [2443] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1554), + [2445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), + [2447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), + [2449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1092), + [2451] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_clause, 5), + [2453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), + [2455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), + [2457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1564), + [2459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1565), + [2461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), + [2463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1567), + [2465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), + [2467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570), + [2469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1572), + [2471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576), + [2473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1578), + [2475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), + [2477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_import_selectors, 3), + [2479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), + [2481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 6), + [2483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_parameters, 4), + [2485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), + [2487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_type, 3), + [2489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_parameters, 4), + [2491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1584), + [2493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 6), + [2495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 6), + [2497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1586), + [2499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), + [2501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1589), + [2503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [2505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_parameters, 4), + [2507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 6), + [2509] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1592), + [2511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1594), + [2513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1596), + [2515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), + [2517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_declaration, 6), + [2519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_declaration, 6), + [2521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_type_definition, 6, .alias_sequence_id = 2), + [2523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 9), + [2525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 9), + [2527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1602), + [2529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), + [2531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1604), + [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1605), + [2535] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1608), + [2537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1609), + [2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1611), + [2541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), + [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1615), + [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), + [2547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), + [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1278), + [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1625), + [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), + [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), + [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1628), + [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1630), + [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1631), + [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), + [2565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1632), + [2567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1633), + [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1634), + [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1637), + [2573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1646), + [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), + [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1648), + [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1649), + [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1650), + [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1651), + [2585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1652), + [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), + [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), + [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1659), + [2593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1660), + [2595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1662), + [2597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1663), + [2599] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1663), + [2601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1664), + [2603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1665), + [2605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1668), + [2607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1677), + [2609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1678), + [2611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1679), + [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1680), + [2615] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1681), + [2617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1682), + [2619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1683), + [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1686), + [2623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1688), + [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1690), + [2627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1691), + [2629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1693), + [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1694), + [2633] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1695), + [2635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_import_selectors, 4), + [2637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 7), + [2639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1696), + [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1697), + [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1698), + [2645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1699), + [2647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 7), + [2649] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_val_definition, 7), + [2651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_var_definition, 7), + [2653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_declaration, 7), + [2655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1702), + [2657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1704), + [2659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1705), + [2661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1705), + [2663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1706), + [2665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1707), + [2667] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1708), + [2669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1709), + [2671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1711), + [2673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1713), + [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1715), + [2677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1716), + [2679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1719), + [2681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1720), + [2683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1722), + [2685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1723), + [2687] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1726), + [2689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1729), + [2691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1732), + [2693] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1512), + [2695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1736), + [2697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1737), + [2699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1738), + [2701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1739), + [2703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1740), + [2705] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1743), + [2707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1744), + [2709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1746), + [2711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1747), + [2713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1750), + [2715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1753), + [2717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1756), + [2719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1546), + [2721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1760), + [2723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1761), + [2725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 8), + [2727] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 8), + [2729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1764), + [2731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1766), + [2733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1767), + [2735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1768), + [2737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1769), + [2739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1769), + [2741] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1770), + [2743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1771), + [2745] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1772), + [2747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1773), + [2749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1775), + [2751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1777), + [2753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1778), + [2755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1779), + [2757] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1779), + [2759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1780), + [2761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1781), + [2763] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1782), + [2765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1783), + [2767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1785), + [2769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1787), + [2771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 9), + [2773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1788), + [2775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1790), + [2777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1791), + [2779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1792), + [2781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1794), + [2783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1795), }; void *tree_sitter_scala_external_scanner_create();