From ce68e3f991feec951260d364b8d4e63abe5f45d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20H=C3=B6lzenspies?= Date: Mon, 7 Oct 2024 12:54:35 +0100 Subject: [PATCH] Implement delete --- grammar.js | 8 +- src/grammar.json | 59 +- src/node-types.json | 16 + src/parser.c | 44584 ++++++++++++++++--------------- src/tree_sitter/parser.h | 1 - test/corpus/basic/deletion.txt | 71 + 6 files changed, 22622 insertions(+), 22117 deletions(-) create mode 100644 test/corpus/basic/deletion.txt diff --git a/grammar.js b/grammar.js index bd34c98..610d4d2 100644 --- a/grammar.js +++ b/grammar.js @@ -249,7 +249,7 @@ module.exports = grammar({ seq( optional($.typeAnnotation), "=", - $._expr + choice($._expr, $.delete), ), repeat1($.objectBody) ) @@ -262,7 +262,7 @@ module.exports = grammar({ field("key", $._expr), "]", choice( - seq("=", field("valueExpr", $._expr)), + seq("=", choice(field("valueExpr", $._expr), $.delete)), repeat1($.objectBody) ) ), @@ -274,7 +274,7 @@ module.exports = grammar({ field("conditionExpr", $._expr), "]]", choice( - seq("=", field("valueExpr", $._expr)), + seq("=", choice(field("valueExpr", $._expr), $.delete)), repeat1($.objectBody) ) ), @@ -397,6 +397,8 @@ module.exports = grammar({ $._expr2 ), + delete: $ => "delete", + variableObjectLiteral: $ => prec(PREC.VAR_OBJ_LITERAL, seq( $.identifier, $.objectBody diff --git a/src/grammar.json b/src/grammar.json index ccf48bd..01ca5ab 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -758,8 +758,17 @@ "value": "=" }, { - "type": "SYMBOL", - "name": "_expr" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr" + }, + { + "type": "SYMBOL", + "name": "delete" + } + ] } ] }, @@ -821,12 +830,21 @@ "value": "=" }, { - "type": "FIELD", - "name": "valueExpr", - "content": { - "type": "SYMBOL", - "name": "_expr" - } + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "valueExpr", + "content": { + "type": "SYMBOL", + "name": "_expr" + } + }, + { + "type": "SYMBOL", + "name": "delete" + } + ] } ] }, @@ -884,12 +902,21 @@ "value": "=" }, { - "type": "FIELD", - "name": "valueExpr", - "content": { - "type": "SYMBOL", - "name": "_expr" - } + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "valueExpr", + "content": { + "type": "SYMBOL", + "name": "_expr" + } + }, + { + "type": "SYMBOL", + "name": "delete" + } + ] } ] }, @@ -1599,6 +1626,10 @@ } ] }, + "delete": { + "type": "STRING", + "value": "delete" + }, "variableObjectLiteral": { "type": "PREC", "value": 2, diff --git a/src/node-types.json b/src/node-types.json index e6f148e..e1a5d68 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2985,6 +2985,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "delete", + "named": true + }, { "type": "objectBody", "named": true @@ -3563,6 +3567,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "delete", + "named": true + }, { "type": "objectBody", "named": true @@ -3590,6 +3598,10 @@ "type": "binaryExprRightAssoc", "named": true }, + { + "type": "delete", + "named": true + }, { "type": "falseLiteral", "named": true @@ -6132,6 +6144,10 @@ "type": "const", "named": false }, + { + "type": "delete", + "named": true + }, { "type": "else", "named": false diff --git a/src/parser.c b/src/parser.c index fda3587..b90f2a0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,11 +5,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1032 +#define STATE_COUNT 1037 #define LARGE_STATE_COUNT 242 -#define SYMBOL_COUNT 269 +#define SYMBOL_COUNT 270 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 143 +#define TOKEN_COUNT 144 #define EXTERNAL_TOKEN_COUNT 16 #define FIELD_COUNT 7 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -62,229 +62,230 @@ enum ts_symbol_identifiers { anon_sym_hidden = 44, anon_sym_fixed = 45, anon_sym_const = 46, - sym_thisExpr = 47, - sym_outerExpr = 48, - sym_nullLiteral = 49, - sym_trueLiteral = 50, - sym_falseLiteral = 51, - sym_intLiteral = 52, - sym_floatLiteral = 53, - anon_sym_DQUOTE = 54, - anon_sym_POUND_DQUOTE = 55, - anon_sym_DQUOTE_POUND = 56, - anon_sym_POUND_POUND_DQUOTE = 57, - anon_sym_DQUOTE_POUND_POUND = 58, - anon_sym_POUND_POUND_POUND_DQUOTE = 59, - anon_sym_DQUOTE_POUND_POUND_POUND = 60, - anon_sym_POUND_POUND_POUND_POUND_DQUOTE = 61, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND = 62, - anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE = 63, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND = 64, - anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE = 65, - anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND = 66, - anon_sym_DQUOTE_DQUOTE_DQUOTE = 67, - anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE = 68, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND = 69, - anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE = 70, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND = 71, - anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE = 72, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND = 73, - anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE = 74, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND = 75, - anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE = 76, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND = 77, - anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE = 78, - anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND = 79, - sym_escapeSequence = 80, - sym_escapeSequence1 = 81, - sym_escapeSequence2 = 82, - sym_escapeSequence3 = 83, - sym_escapeSequence4 = 84, - sym_escapeSequence5 = 85, - sym_escapeSequence6 = 86, - anon_sym_BSLASH_LPAREN = 87, - anon_sym_BSLASH_POUND_LPAREN = 88, - anon_sym_BSLASH_POUND_POUND_LPAREN = 89, - anon_sym_BSLASH_POUND_POUND_POUND_LPAREN = 90, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN = 91, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN = 92, - anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN = 93, - anon_sym_new = 94, - anon_sym_super = 95, - anon_sym_DOT = 96, - anon_sym_QMARK_DOT = 97, - anon_sym_LF = 98, - anon_sym_BANG_BANG = 99, - anon_sym_DASH = 100, - anon_sym_BANG = 101, - anon_sym_STAR_STAR = 102, - anon_sym_QMARK_QMARK = 103, - anon_sym_SLASH = 104, - anon_sym_TILDE_SLASH = 105, - anon_sym_PERCENT = 106, - anon_sym_PLUS = 107, - anon_sym_LT_EQ = 108, - anon_sym_GT_EQ = 109, - anon_sym_EQ_EQ = 110, - anon_sym_BANG_EQ = 111, - anon_sym_AMP_AMP = 112, - anon_sym_PIPE_PIPE = 113, - anon_sym_PIPE_GT = 114, - anon_sym_is = 115, - anon_sym_if = 116, - anon_sym_let = 117, - anon_sym_throw = 118, - anon_sym_trace = 119, - anon_sym_read = 120, - anon_sym_read_QMARK = 121, - anon_sym_read_STAR = 122, - aux_sym_lineComment_token1 = 123, - anon_sym_SLASH_SLASH_DOLLAR = 124, - aux_sym_docComment_token1 = 125, - sym_blockComment = 126, - sym__sl_string_chars = 127, - sym__sl1_string_chars = 128, - sym__sl2_string_chars = 129, - sym__sl3_string_chars = 130, - sym__sl4_string_chars = 131, - sym__sl5_string_chars = 132, - sym__sl6_string_chars = 133, - sym__ml_string_chars = 134, - sym__ml1_string_chars = 135, - sym__ml2_string_chars = 136, - sym__ml3_string_chars = 137, - sym__ml4_string_chars = 138, - sym__ml5_string_chars = 139, - sym__ml6_string_chars = 140, - sym__open_subscript_bracket = 141, - sym__open_argument_paren = 142, - sym_module = 143, - sym_shebangComment = 144, - sym_moduleHeader = 145, - sym_moduleClause = 146, - sym_extendsOrAmendsClause = 147, - sym_importClause = 148, - sym_importGlobClause = 149, - sym__moduleMember = 150, - sym_clazz = 151, - sym_classExtendsClause = 152, - sym_classBody = 153, - sym_typeAlias = 154, - sym_classProperty = 155, - sym_classMethod = 156, - sym_methodHeader = 157, - sym_annotation = 158, - sym_objectBody = 159, - sym__objectMember = 160, - sym_objectProperty = 161, - sym_objectMethod = 162, - sym_objectEntry = 163, - sym_objectElement = 164, - sym_objectPredicate = 165, - sym_forGenerator = 166, - sym_whenGenerator = 167, - sym_objectSpread = 168, - sym_objectBodyParameters = 169, - sym_typeAnnotation = 170, - sym_type = 171, - sym_stringLiteralType = 172, - sym_declaredType = 173, - sym_parenthesizedType = 174, - sym_nullableType = 175, - sym_constrainedType = 176, - sym_unionType = 177, - sym_unionDefaultType = 178, - sym_functionLiteralType = 179, - sym_typeArgumentList = 180, - sym_typeParameterList = 181, - sym_typeParameter = 182, - sym_parameterList = 183, - sym_argumentList = 184, - sym_modifier = 185, - sym__expr = 186, - sym_variableObjectLiteral = 187, - sym__expr2 = 188, - sym_parenthesizedExpr = 189, - sym_moduleExpr = 190, - sym_variableExpr = 191, - sym_stringConstant = 192, - sym_slStringLiteral = 193, - sym_slStringLiteralPart = 194, - sym_slStringLiteralPart1 = 195, - sym_slStringLiteralPart2 = 196, - sym_slStringLiteralPart3 = 197, - sym_slStringLiteralPart4 = 198, - sym_slStringLiteralPart5 = 199, - sym_slStringLiteralPart6 = 200, - sym_mlStringLiteral = 201, - sym_mlStringLiteralPart = 202, - sym_mlStringLiteralPart1 = 203, - sym_mlStringLiteralPart2 = 204, - sym_mlStringLiteralPart3 = 205, - sym_mlStringLiteralPart4 = 206, - sym_mlStringLiteralPart5 = 207, - sym_mlStringLiteralPart6 = 208, - sym_interpolationExpr = 209, - sym_interpolationExpr1 = 210, - sym_interpolationExpr2 = 211, - sym_interpolationExpr3 = 212, - sym_interpolationExpr4 = 213, - sym_interpolationExpr5 = 214, - sym_interpolationExpr6 = 215, - sym_newExpr = 216, - sym_objectLiteral = 217, - sym_methodCallExpr = 218, - sym_propertyCallExpr = 219, - sym_subscriptExpr = 220, - sym_unaryExpr = 221, - sym_binaryExprRightAssoc = 222, - sym_binaryExpr = 223, - sym_isExpr = 224, - sym_asExpr = 225, - sym_ifExpr = 226, - sym_letExpr = 227, - sym_throwExpr = 228, - sym_traceExpr = 229, - sym_readExpr = 230, - sym_readOrNullExpr = 231, - sym_readGlobExpr = 232, - sym_importExpr = 233, - sym_importGlobExpr = 234, - sym_functionLiteral = 235, - sym_qualifiedIdentifier = 236, - sym_typedIdentifier = 237, - sym_lineComment = 238, - sym_docComment = 239, - aux_sym_module_repeat1 = 240, - aux_sym_module_repeat2 = 241, - aux_sym_moduleHeader_repeat1 = 242, - aux_sym_moduleClause_repeat1 = 243, - aux_sym_classBody_repeat1 = 244, - aux_sym_classProperty_repeat1 = 245, - aux_sym_objectBody_repeat1 = 246, - aux_sym_objectBodyParameters_repeat1 = 247, - aux_sym_constrainedType_repeat1 = 248, - aux_sym_functionLiteralType_repeat1 = 249, - aux_sym_typeParameterList_repeat1 = 250, - aux_sym_stringConstant_repeat1 = 251, - aux_sym_stringConstant_repeat2 = 252, - aux_sym_slStringLiteral_repeat1 = 253, - aux_sym_slStringLiteral_repeat2 = 254, - aux_sym_slStringLiteral_repeat3 = 255, - aux_sym_slStringLiteral_repeat4 = 256, - aux_sym_slStringLiteral_repeat5 = 257, - aux_sym_slStringLiteral_repeat6 = 258, - aux_sym_slStringLiteral_repeat7 = 259, - aux_sym_mlStringLiteral_repeat1 = 260, - aux_sym_mlStringLiteral_repeat2 = 261, - aux_sym_mlStringLiteral_repeat3 = 262, - aux_sym_mlStringLiteral_repeat4 = 263, - aux_sym_mlStringLiteral_repeat5 = 264, - aux_sym_mlStringLiteral_repeat6 = 265, - aux_sym_mlStringLiteral_repeat7 = 266, - aux_sym_qualifiedIdentifier_repeat1 = 267, - aux_sym_docComment_repeat1 = 268, - alias_sym_moduleType = 269, + sym_delete = 47, + sym_thisExpr = 48, + sym_outerExpr = 49, + sym_nullLiteral = 50, + sym_trueLiteral = 51, + sym_falseLiteral = 52, + sym_intLiteral = 53, + sym_floatLiteral = 54, + anon_sym_DQUOTE = 55, + anon_sym_POUND_DQUOTE = 56, + anon_sym_DQUOTE_POUND = 57, + anon_sym_POUND_POUND_DQUOTE = 58, + anon_sym_DQUOTE_POUND_POUND = 59, + anon_sym_POUND_POUND_POUND_DQUOTE = 60, + anon_sym_DQUOTE_POUND_POUND_POUND = 61, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE = 62, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND = 63, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE = 64, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND = 65, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE = 66, + anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND = 67, + anon_sym_DQUOTE_DQUOTE_DQUOTE = 68, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE = 69, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND = 70, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE = 71, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND = 72, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE = 73, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND = 74, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE = 75, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND = 76, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE = 77, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND = 78, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE = 79, + anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND = 80, + sym_escapeSequence = 81, + sym_escapeSequence1 = 82, + sym_escapeSequence2 = 83, + sym_escapeSequence3 = 84, + sym_escapeSequence4 = 85, + sym_escapeSequence5 = 86, + sym_escapeSequence6 = 87, + anon_sym_BSLASH_LPAREN = 88, + anon_sym_BSLASH_POUND_LPAREN = 89, + anon_sym_BSLASH_POUND_POUND_LPAREN = 90, + anon_sym_BSLASH_POUND_POUND_POUND_LPAREN = 91, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN = 92, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN = 93, + anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN = 94, + anon_sym_new = 95, + anon_sym_super = 96, + anon_sym_DOT = 97, + anon_sym_QMARK_DOT = 98, + anon_sym_LF = 99, + anon_sym_BANG_BANG = 100, + anon_sym_DASH = 101, + anon_sym_BANG = 102, + anon_sym_STAR_STAR = 103, + anon_sym_QMARK_QMARK = 104, + anon_sym_SLASH = 105, + anon_sym_TILDE_SLASH = 106, + anon_sym_PERCENT = 107, + anon_sym_PLUS = 108, + anon_sym_LT_EQ = 109, + anon_sym_GT_EQ = 110, + anon_sym_EQ_EQ = 111, + anon_sym_BANG_EQ = 112, + anon_sym_AMP_AMP = 113, + anon_sym_PIPE_PIPE = 114, + anon_sym_PIPE_GT = 115, + anon_sym_is = 116, + anon_sym_if = 117, + anon_sym_let = 118, + anon_sym_throw = 119, + anon_sym_trace = 120, + anon_sym_read = 121, + anon_sym_read_QMARK = 122, + anon_sym_read_STAR = 123, + aux_sym_lineComment_token1 = 124, + anon_sym_SLASH_SLASH_DOLLAR = 125, + aux_sym_docComment_token1 = 126, + sym_blockComment = 127, + sym__sl_string_chars = 128, + sym__sl1_string_chars = 129, + sym__sl2_string_chars = 130, + sym__sl3_string_chars = 131, + sym__sl4_string_chars = 132, + sym__sl5_string_chars = 133, + sym__sl6_string_chars = 134, + sym__ml_string_chars = 135, + sym__ml1_string_chars = 136, + sym__ml2_string_chars = 137, + sym__ml3_string_chars = 138, + sym__ml4_string_chars = 139, + sym__ml5_string_chars = 140, + sym__ml6_string_chars = 141, + sym__open_subscript_bracket = 142, + sym__open_argument_paren = 143, + sym_module = 144, + sym_shebangComment = 145, + sym_moduleHeader = 146, + sym_moduleClause = 147, + sym_extendsOrAmendsClause = 148, + sym_importClause = 149, + sym_importGlobClause = 150, + sym__moduleMember = 151, + sym_clazz = 152, + sym_classExtendsClause = 153, + sym_classBody = 154, + sym_typeAlias = 155, + sym_classProperty = 156, + sym_classMethod = 157, + sym_methodHeader = 158, + sym_annotation = 159, + sym_objectBody = 160, + sym__objectMember = 161, + sym_objectProperty = 162, + sym_objectMethod = 163, + sym_objectEntry = 164, + sym_objectElement = 165, + sym_objectPredicate = 166, + sym_forGenerator = 167, + sym_whenGenerator = 168, + sym_objectSpread = 169, + sym_objectBodyParameters = 170, + sym_typeAnnotation = 171, + sym_type = 172, + sym_stringLiteralType = 173, + sym_declaredType = 174, + sym_parenthesizedType = 175, + sym_nullableType = 176, + sym_constrainedType = 177, + sym_unionType = 178, + sym_unionDefaultType = 179, + sym_functionLiteralType = 180, + sym_typeArgumentList = 181, + sym_typeParameterList = 182, + sym_typeParameter = 183, + sym_parameterList = 184, + sym_argumentList = 185, + sym_modifier = 186, + sym__expr = 187, + sym_variableObjectLiteral = 188, + sym__expr2 = 189, + sym_parenthesizedExpr = 190, + sym_moduleExpr = 191, + sym_variableExpr = 192, + sym_stringConstant = 193, + sym_slStringLiteral = 194, + sym_slStringLiteralPart = 195, + sym_slStringLiteralPart1 = 196, + sym_slStringLiteralPart2 = 197, + sym_slStringLiteralPart3 = 198, + sym_slStringLiteralPart4 = 199, + sym_slStringLiteralPart5 = 200, + sym_slStringLiteralPart6 = 201, + sym_mlStringLiteral = 202, + sym_mlStringLiteralPart = 203, + sym_mlStringLiteralPart1 = 204, + sym_mlStringLiteralPart2 = 205, + sym_mlStringLiteralPart3 = 206, + sym_mlStringLiteralPart4 = 207, + sym_mlStringLiteralPart5 = 208, + sym_mlStringLiteralPart6 = 209, + sym_interpolationExpr = 210, + sym_interpolationExpr1 = 211, + sym_interpolationExpr2 = 212, + sym_interpolationExpr3 = 213, + sym_interpolationExpr4 = 214, + sym_interpolationExpr5 = 215, + sym_interpolationExpr6 = 216, + sym_newExpr = 217, + sym_objectLiteral = 218, + sym_methodCallExpr = 219, + sym_propertyCallExpr = 220, + sym_subscriptExpr = 221, + sym_unaryExpr = 222, + sym_binaryExprRightAssoc = 223, + sym_binaryExpr = 224, + sym_isExpr = 225, + sym_asExpr = 226, + sym_ifExpr = 227, + sym_letExpr = 228, + sym_throwExpr = 229, + sym_traceExpr = 230, + sym_readExpr = 231, + sym_readOrNullExpr = 232, + sym_readGlobExpr = 233, + sym_importExpr = 234, + sym_importGlobExpr = 235, + sym_functionLiteral = 236, + sym_qualifiedIdentifier = 237, + sym_typedIdentifier = 238, + sym_lineComment = 239, + sym_docComment = 240, + aux_sym_module_repeat1 = 241, + aux_sym_module_repeat2 = 242, + aux_sym_moduleHeader_repeat1 = 243, + aux_sym_moduleClause_repeat1 = 244, + aux_sym_classBody_repeat1 = 245, + aux_sym_classProperty_repeat1 = 246, + aux_sym_objectBody_repeat1 = 247, + aux_sym_objectBodyParameters_repeat1 = 248, + aux_sym_constrainedType_repeat1 = 249, + aux_sym_functionLiteralType_repeat1 = 250, + aux_sym_typeParameterList_repeat1 = 251, + aux_sym_stringConstant_repeat1 = 252, + aux_sym_stringConstant_repeat2 = 253, + aux_sym_slStringLiteral_repeat1 = 254, + aux_sym_slStringLiteral_repeat2 = 255, + aux_sym_slStringLiteral_repeat3 = 256, + aux_sym_slStringLiteral_repeat4 = 257, + aux_sym_slStringLiteral_repeat5 = 258, + aux_sym_slStringLiteral_repeat6 = 259, + aux_sym_slStringLiteral_repeat7 = 260, + aux_sym_mlStringLiteral_repeat1 = 261, + aux_sym_mlStringLiteral_repeat2 = 262, + aux_sym_mlStringLiteral_repeat3 = 263, + aux_sym_mlStringLiteral_repeat4 = 264, + aux_sym_mlStringLiteral_repeat5 = 265, + aux_sym_mlStringLiteral_repeat6 = 266, + aux_sym_mlStringLiteral_repeat7 = 267, + aux_sym_qualifiedIdentifier_repeat1 = 268, + aux_sym_docComment_repeat1 = 269, + alias_sym_moduleType = 270, }; static const char * const ts_symbol_names[] = { @@ -335,6 +336,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_hidden] = "hidden", [anon_sym_fixed] = "fixed", [anon_sym_const] = "const", + [sym_delete] = "delete", [sym_thisExpr] = "thisExpr", [sym_outerExpr] = "outerExpr", [sym_nullLiteral] = "nullLiteral", @@ -608,6 +610,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_hidden] = anon_sym_hidden, [anon_sym_fixed] = anon_sym_fixed, [anon_sym_const] = anon_sym_const, + [sym_delete] = sym_delete, [sym_thisExpr] = sym_thisExpr, [sym_outerExpr] = sym_outerExpr, [sym_nullLiteral] = sym_nullLiteral, @@ -1022,6 +1025,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym_delete] = { + .visible = true, + .named = true, + }, [sym_thisExpr] = { .visible = true, .named = true, @@ -1997,17 +2004,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [9] = 7, [10] = 10, [11] = 11, - [12] = 10, - [13] = 10, - [14] = 11, - [15] = 10, - [16] = 7, - [17] = 17, + [12] = 11, + [13] = 7, + [14] = 10, + [15] = 11, + [16] = 11, + [17] = 10, [18] = 10, - [19] = 11, - [20] = 7, - [21] = 11, - [22] = 11, + [19] = 7, + [20] = 11, + [21] = 21, + [22] = 10, [23] = 23, [24] = 24, [25] = 25, @@ -2095,12 +2102,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [107] = 106, [108] = 106, [109] = 109, - [110] = 109, - [111] = 109, - [112] = 112, + [110] = 110, + [111] = 111, + [112] = 111, [113] = 113, [114] = 114, - [115] = 115, + [115] = 111, [116] = 116, [117] = 117, [118] = 118, @@ -2109,132 +2116,132 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [121] = 121, [122] = 122, [123] = 123, - [124] = 113, + [124] = 124, [125] = 125, [126] = 126, [127] = 127, [128] = 128, [129] = 129, - [130] = 130, - [131] = 131, - [132] = 130, + [130] = 120, + [131] = 122, + [132] = 121, [133] = 133, - [134] = 123, - [135] = 116, + [134] = 134, + [135] = 135, [136] = 136, [137] = 137, - [138] = 115, - [139] = 114, - [140] = 123, + [138] = 136, + [139] = 135, + [140] = 140, [141] = 141, - [142] = 116, - [143] = 117, - [144] = 118, - [145] = 119, + [142] = 133, + [143] = 137, + [144] = 134, + [145] = 118, [146] = 146, [147] = 147, - [148] = 126, - [149] = 112, - [150] = 114, - [151] = 127, - [152] = 128, + [148] = 148, + [149] = 149, + [150] = 124, + [151] = 123, + [152] = 152, [153] = 153, - [154] = 129, + [154] = 154, [155] = 155, - [156] = 130, + [156] = 156, [157] = 157, - [158] = 158, + [158] = 129, [159] = 159, [160] = 160, [161] = 161, - [162] = 115, + [162] = 128, [163] = 163, - [164] = 129, - [165] = 128, + [164] = 156, + [165] = 155, [166] = 166, [167] = 167, [168] = 168, [169] = 169, [170] = 170, - [171] = 127, - [172] = 112, - [173] = 126, + [171] = 124, + [172] = 123, + [173] = 156, [174] = 174, - [175] = 116, - [176] = 120, - [177] = 177, + [175] = 127, + [176] = 154, + [177] = 126, [178] = 178, [179] = 179, [180] = 125, - [181] = 181, - [182] = 130, - [183] = 115, - [184] = 114, - [185] = 122, - [186] = 186, - [187] = 187, - [188] = 117, - [189] = 118, + [181] = 133, + [182] = 135, + [183] = 136, + [184] = 137, + [185] = 134, + [186] = 118, + [187] = 146, + [188] = 122, + [189] = 147, [190] = 155, - [191] = 157, - [192] = 119, - [193] = 120, + [191] = 121, + [192] = 148, + [193] = 149, [194] = 194, - [195] = 131, - [196] = 181, - [197] = 160, - [198] = 131, - [199] = 121, - [200] = 181, - [201] = 170, - [202] = 121, - [203] = 170, - [204] = 160, - [205] = 121, - [206] = 120, - [207] = 157, - [208] = 208, - [209] = 119, - [210] = 118, - [211] = 155, + [195] = 133, + [196] = 135, + [197] = 140, + [198] = 154, + [199] = 136, + [200] = 137, + [201] = 201, + [202] = 134, + [203] = 118, + [204] = 146, + [205] = 120, + [206] = 147, + [207] = 148, + [208] = 149, + [209] = 209, + [210] = 210, + [211] = 211, [212] = 179, - [213] = 117, - [214] = 214, + [213] = 124, + [214] = 155, [215] = 178, - [216] = 170, - [217] = 160, - [218] = 122, + [216] = 156, + [217] = 123, + [218] = 149, [219] = 174, - [220] = 157, - [221] = 155, - [222] = 222, + [220] = 120, + [221] = 146, + [222] = 140, [223] = 169, - [224] = 125, - [225] = 122, - [226] = 226, + [224] = 121, + [225] = 147, + [226] = 122, [227] = 168, - [228] = 113, - [229] = 229, - [230] = 181, + [228] = 154, + [229] = 125, + [230] = 126, [231] = 167, - [232] = 131, - [233] = 129, - [234] = 113, + [232] = 127, + [233] = 128, + [234] = 125, [235] = 163, - [236] = 125, - [237] = 126, - [238] = 112, - [239] = 239, - [240] = 127, - [241] = 128, + [236] = 126, + [237] = 129, + [238] = 127, + [239] = 148, + [240] = 128, + [241] = 129, [242] = 242, [243] = 243, [244] = 244, [245] = 245, [246] = 246, - [247] = 70, - [248] = 73, - [249] = 52, + [247] = 56, + [248] = 69, + [249] = 51, [250] = 250, [251] = 251, [252] = 252, @@ -2244,346 +2251,346 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [256] = 256, [257] = 257, [258] = 258, - [259] = 25, - [260] = 27, - [261] = 29, - [262] = 26, - [263] = 28, - [264] = 45, - [265] = 33, - [266] = 38, - [267] = 37, - [268] = 34, - [269] = 36, - [270] = 43, - [271] = 31, - [272] = 48, - [273] = 77, - [274] = 40, - [275] = 39, - [276] = 32, - [277] = 30, - [278] = 35, - [279] = 41, - [280] = 46, - [281] = 78, - [282] = 44, - [283] = 42, - [284] = 47, - [285] = 49, - [286] = 81, - [287] = 50, - [288] = 73, - [289] = 53, - [290] = 61, - [291] = 67, - [292] = 51, - [293] = 75, - [294] = 89, - [295] = 58, - [296] = 63, - [297] = 60, - [298] = 96, - [299] = 74, - [300] = 88, - [301] = 87, - [302] = 57, - [303] = 54, - [304] = 56, - [305] = 95, - [306] = 70, - [307] = 90, - [308] = 69, - [309] = 59, - [310] = 94, - [311] = 97, - [312] = 76, - [313] = 80, - [314] = 64, - [315] = 52, - [316] = 93, - [317] = 55, - [318] = 71, - [319] = 68, - [320] = 65, - [321] = 82, - [322] = 66, - [323] = 85, - [324] = 62, - [325] = 72, - [326] = 92, - [327] = 83, - [328] = 84, - [329] = 91, - [330] = 330, - [331] = 331, - [332] = 332, - [333] = 333, - [334] = 334, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 25, + [265] = 28, + [266] = 30, + [267] = 27, + [268] = 24, + [269] = 78, + [270] = 36, + [271] = 32, + [272] = 42, + [273] = 33, + [274] = 35, + [275] = 46, + [276] = 45, + [277] = 44, + [278] = 43, + [279] = 31, + [280] = 48, + [281] = 41, + [282] = 38, + [283] = 37, + [284] = 40, + [285] = 29, + [286] = 47, + [287] = 77, + [288] = 39, + [289] = 34, + [290] = 49, + [291] = 82, + [292] = 84, + [293] = 94, + [294] = 86, + [295] = 60, + [296] = 69, + [297] = 81, + [298] = 92, + [299] = 59, + [300] = 58, + [301] = 63, + [302] = 91, + [303] = 93, + [304] = 89, + [305] = 88, + [306] = 87, + [307] = 54, + [308] = 80, + [309] = 96, + [310] = 55, + [311] = 70, + [312] = 66, + [313] = 65, + [314] = 62, + [315] = 74, + [316] = 51, + [317] = 67, + [318] = 61, + [319] = 83, + [320] = 64, + [321] = 71, + [322] = 57, + [323] = 97, + [324] = 68, + [325] = 53, + [326] = 73, + [327] = 95, + [328] = 72, + [329] = 56, + [330] = 75, + [331] = 90, + [332] = 76, + [333] = 50, + [334] = 52, [335] = 335, [336] = 336, [337] = 337, - [338] = 77, + [338] = 338, [339] = 339, [340] = 340, - [341] = 25, + [341] = 341, [342] = 342, [343] = 343, [344] = 27, [345] = 78, - [346] = 28, + [346] = 25, [347] = 347, [348] = 348, - [349] = 36, - [350] = 26, - [351] = 25, - [352] = 28, - [353] = 29, - [354] = 27, - [355] = 31, - [356] = 37, - [357] = 96, - [358] = 89, - [359] = 46, - [360] = 35, - [361] = 85, - [362] = 34, - [363] = 42, - [364] = 40, - [365] = 83, - [366] = 84, - [367] = 78, - [368] = 77, - [369] = 91, - [370] = 36, - [371] = 92, - [372] = 93, - [373] = 43, - [374] = 81, - [375] = 82, - [376] = 48, - [377] = 41, - [378] = 95, - [379] = 38, - [380] = 94, - [381] = 45, - [382] = 30, - [383] = 32, + [349] = 349, + [350] = 77, + [351] = 30, + [352] = 352, + [353] = 353, + [354] = 42, + [355] = 25, + [356] = 30, + [357] = 27, + [358] = 24, + [359] = 28, + [360] = 29, + [361] = 97, + [362] = 47, + [363] = 40, + [364] = 95, + [365] = 46, + [366] = 39, + [367] = 37, + [368] = 42, + [369] = 32, + [370] = 78, + [371] = 77, + [372] = 45, + [373] = 44, + [374] = 41, + [375] = 38, + [376] = 43, + [377] = 48, + [378] = 31, + [379] = 81, + [380] = 82, + [381] = 94, + [382] = 93, + [383] = 90, [384] = 33, - [385] = 90, - [386] = 88, - [387] = 87, - [388] = 39, - [389] = 97, - [390] = 80, - [391] = 44, - [392] = 33, - [393] = 47, - [394] = 44, - [395] = 29, - [396] = 25, - [397] = 397, - [398] = 398, - [399] = 397, - [400] = 400, + [385] = 92, + [386] = 36, + [387] = 96, + [388] = 91, + [389] = 83, + [390] = 86, + [391] = 84, + [392] = 89, + [393] = 35, + [394] = 88, + [395] = 87, + [396] = 80, + [397] = 34, + [398] = 31, + [399] = 28, + [400] = 45, [401] = 49, - [402] = 402, - [403] = 28, - [404] = 402, + [402] = 30, + [403] = 403, + [404] = 404, [405] = 405, - [406] = 27, - [407] = 407, - [408] = 402, - [409] = 409, - [410] = 402, - [411] = 397, - [412] = 60, - [413] = 63, - [414] = 67, - [415] = 36, - [416] = 92, - [417] = 81, - [418] = 95, - [419] = 57, - [420] = 40, - [421] = 54, - [422] = 53, - [423] = 56, - [424] = 96, - [425] = 90, - [426] = 94, - [427] = 89, - [428] = 85, - [429] = 82, - [430] = 68, - [431] = 64, - [432] = 97, - [433] = 76, - [434] = 75, - [435] = 37, - [436] = 80, - [437] = 59, - [438] = 38, - [439] = 84, - [440] = 87, - [441] = 88, - [442] = 39, - [443] = 93, - [444] = 50, - [445] = 83, - [446] = 43, - [447] = 74, - [448] = 62, - [449] = 72, - [450] = 58, - [451] = 42, - [452] = 55, - [453] = 45, - [454] = 32, - [455] = 41, - [456] = 34, - [457] = 31, - [458] = 35, - [459] = 48, - [460] = 61, - [461] = 70, - [462] = 52, - [463] = 66, - [464] = 46, - [465] = 91, - [466] = 73, - [467] = 69, + [406] = 406, + [407] = 405, + [408] = 408, + [409] = 403, + [410] = 27, + [411] = 405, + [412] = 25, + [413] = 413, + [414] = 414, + [415] = 405, + [416] = 403, + [417] = 55, + [418] = 62, + [419] = 80, + [420] = 96, + [421] = 74, + [422] = 70, + [423] = 71, + [424] = 92, + [425] = 72, + [426] = 76, + [427] = 68, + [428] = 91, + [429] = 37, + [430] = 42, + [431] = 59, + [432] = 93, + [433] = 36, + [434] = 35, + [435] = 54, + [436] = 60, + [437] = 33, + [438] = 64, + [439] = 73, + [440] = 58, + [441] = 84, + [442] = 82, + [443] = 63, + [444] = 86, + [445] = 47, + [446] = 94, + [447] = 38, + [448] = 43, + [449] = 44, + [450] = 66, + [451] = 69, + [452] = 46, + [453] = 39, + [454] = 90, + [455] = 32, + [456] = 48, + [457] = 89, + [458] = 40, + [459] = 88, + [460] = 41, + [461] = 65, + [462] = 87, + [463] = 67, + [464] = 83, + [465] = 97, + [466] = 81, + [467] = 56, [468] = 51, - [469] = 71, - [470] = 65, - [471] = 471, + [469] = 95, + [470] = 50, + [471] = 52, [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 473, + [473] = 75, + [474] = 57, + [475] = 61, + [476] = 53, [477] = 477, - [478] = 473, + [478] = 478, [479] = 479, [480] = 480, [481] = 481, - [482] = 482, - [483] = 475, + [482] = 480, + [483] = 479, [484] = 484, [485] = 485, - [486] = 482, + [486] = 480, [487] = 481, - [488] = 485, + [488] = 480, [489] = 479, - [490] = 474, - [491] = 491, + [490] = 485, + [491] = 485, [492] = 492, - [493] = 480, - [494] = 477, + [493] = 484, + [494] = 478, [495] = 495, - [496] = 495, - [497] = 477, + [496] = 496, + [497] = 497, [498] = 498, - [499] = 475, + [499] = 499, [500] = 500, - [501] = 501, - [502] = 491, - [503] = 477, - [504] = 492, - [505] = 475, - [506] = 495, - [507] = 491, - [508] = 473, + [501] = 500, + [502] = 498, + [503] = 503, + [504] = 496, + [505] = 495, + [506] = 484, + [507] = 499, + [508] = 485, [509] = 509, - [510] = 510, + [510] = 477, [511] = 511, - [512] = 512, - [513] = 513, - [514] = 26, + [512] = 479, + [513] = 481, + [514] = 514, [515] = 515, [516] = 516, [517] = 517, - [518] = 516, - [519] = 516, - [520] = 520, - [521] = 33, + [518] = 518, + [519] = 519, + [520] = 24, + [521] = 521, [522] = 522, - [523] = 523, - [524] = 520, - [525] = 520, - [526] = 520, - [527] = 520, - [528] = 528, - [529] = 520, + [523] = 519, + [524] = 519, + [525] = 525, + [526] = 45, + [527] = 527, + [528] = 527, + [529] = 527, [530] = 530, [531] = 531, - [532] = 44, + [532] = 31, [533] = 533, - [534] = 534, - [535] = 535, - [536] = 536, + [534] = 527, + [535] = 527, + [536] = 527, [537] = 537, [538] = 538, - [539] = 534, + [539] = 69, [540] = 540, [541] = 541, - [542] = 542, - [543] = 535, - [544] = 536, - [545] = 545, - [546] = 534, - [547] = 536, + [542] = 541, + [543] = 541, + [544] = 544, + [545] = 544, + [546] = 546, + [547] = 51, [548] = 548, [549] = 549, - [550] = 550, - [551] = 551, + [550] = 541, + [551] = 544, [552] = 552, - [553] = 545, - [554] = 540, - [555] = 534, + [553] = 538, + [554] = 554, + [555] = 555, [556] = 556, - [557] = 552, - [558] = 70, - [559] = 552, - [560] = 560, - [561] = 545, - [562] = 534, - [563] = 535, - [564] = 564, - [565] = 535, - [566] = 566, - [567] = 538, - [568] = 52, - [569] = 73, - [570] = 538, - [571] = 540, - [572] = 545, - [573] = 535, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 576, - [579] = 534, - [580] = 577, - [581] = 576, - [582] = 540, - [583] = 535, - [584] = 538, - [585] = 538, - [586] = 540, - [587] = 577, + [557] = 538, + [558] = 558, + [559] = 538, + [560] = 546, + [561] = 538, + [562] = 562, + [563] = 563, + [564] = 555, + [565] = 565, + [566] = 546, + [567] = 546, + [568] = 568, + [569] = 546, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 538, + [574] = 565, + [575] = 558, + [576] = 570, + [577] = 565, + [578] = 568, + [579] = 544, + [580] = 565, + [581] = 558, + [582] = 570, + [583] = 56, + [584] = 565, + [585] = 565, + [586] = 586, + [587] = 555, [588] = 588, - [589] = 545, - [590] = 576, - [591] = 577, - [592] = 545, - [593] = 538, - [594] = 552, - [595] = 595, - [596] = 596, + [589] = 568, + [590] = 558, + [591] = 568, + [592] = 592, + [593] = 570, + [594] = 570, + [595] = 570, + [596] = 568, [597] = 597, - [598] = 598, + [598] = 546, [599] = 599, [600] = 600, [601] = 601, @@ -2594,7 +2601,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [606] = 606, [607] = 607, [608] = 608, - [609] = 246, + [609] = 245, [610] = 610, [611] = 611, [612] = 612, @@ -2629,7 +2636,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [641] = 641, [642] = 642, [643] = 643, - [644] = 250, + [644] = 644, [645] = 645, [646] = 646, [647] = 647, @@ -2639,7 +2646,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [651] = 651, [652] = 652, [653] = 653, - [654] = 654, + [654] = 251, [655] = 655, [656] = 656, [657] = 657, @@ -2667,25 +2674,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [679] = 679, [680] = 680, [681] = 681, - [682] = 26, + [682] = 682, [683] = 683, [684] = 684, - [685] = 530, + [685] = 685, [686] = 686, - [687] = 687, + [687] = 24, [688] = 688, [689] = 689, - [690] = 690, + [690] = 530, [691] = 691, - [692] = 688, + [692] = 692, [693] = 693, - [694] = 687, - [695] = 686, + [694] = 694, + [695] = 695, [696] = 696, - [697] = 697, + [697] = 693, [698] = 698, - [699] = 699, - [700] = 700, + [699] = 692, + [700] = 691, [701] = 701, [702] = 702, [703] = 703, @@ -2694,29 +2701,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [706] = 706, [707] = 707, [708] = 708, - [709] = 697, - [710] = 698, - [711] = 699, - [712] = 700, - [713] = 701, - [714] = 703, - [715] = 704, - [716] = 705, - [717] = 707, - [718] = 708, - [719] = 719, - [720] = 720, - [721] = 683, - [722] = 722, - [723] = 706, - [724] = 702, - [725] = 693, - [726] = 691, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 702, + [715] = 703, + [716] = 704, + [717] = 705, + [718] = 706, + [719] = 708, + [720] = 709, + [721] = 710, + [722] = 712, + [723] = 713, + [724] = 724, + [725] = 725, + [726] = 688, [727] = 727, - [728] = 728, - [729] = 729, - [730] = 730, - [731] = 731, + [728] = 711, + [729] = 707, + [730] = 698, + [731] = 696, [732] = 732, [733] = 733, [734] = 734, @@ -2727,99 +2734,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [739] = 739, [740] = 740, [741] = 741, - [742] = 690, - [743] = 684, - [744] = 689, + [742] = 742, + [743] = 743, + [744] = 744, [745] = 745, - [746] = 719, - [747] = 683, - [748] = 748, - [749] = 706, - [750] = 702, - [751] = 693, - [752] = 691, - [753] = 745, - [754] = 690, - [755] = 689, - [756] = 719, + [746] = 746, + [747] = 695, + [748] = 689, + [749] = 694, + [750] = 750, + [751] = 724, + [752] = 688, + [753] = 753, + [754] = 711, + [755] = 707, + [756] = 698, [757] = 696, - [758] = 727, - [759] = 748, - [760] = 745, - [761] = 684, - [762] = 722, - [763] = 720, - [764] = 727, - [765] = 688, - [766] = 687, - [767] = 686, - [768] = 696, - [769] = 697, - [770] = 698, - [771] = 699, - [772] = 700, + [758] = 750, + [759] = 695, + [760] = 694, + [761] = 724, + [762] = 701, + [763] = 732, + [764] = 753, + [765] = 750, + [766] = 689, + [767] = 727, + [768] = 725, + [769] = 732, + [770] = 693, + [771] = 692, + [772] = 691, [773] = 701, - [774] = 703, - [775] = 704, - [776] = 705, - [777] = 707, - [778] = 708, - [779] = 748, - [780] = 720, - [781] = 722, - [782] = 26, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 786, - [787] = 787, - [788] = 783, - [789] = 783, + [774] = 702, + [775] = 703, + [776] = 704, + [777] = 705, + [778] = 706, + [779] = 708, + [780] = 709, + [781] = 710, + [782] = 712, + [783] = 713, + [784] = 753, + [785] = 725, + [786] = 727, + [787] = 24, + [788] = 788, + [789] = 789, [790] = 790, [791] = 791, [792] = 792, - [793] = 783, - [794] = 787, - [795] = 783, + [793] = 788, + [794] = 788, + [795] = 795, [796] = 796, - [797] = 783, - [798] = 787, - [799] = 787, - [800] = 530, + [797] = 797, + [798] = 788, + [799] = 792, + [800] = 788, [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 804, - [807] = 803, - [808] = 801, - [809] = 805, + [802] = 788, + [803] = 792, + [804] = 792, + [805] = 530, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 809, [810] = 810, - [811] = 811, - [812] = 812, - [813] = 803, - [814] = 812, - [815] = 804, - [816] = 812, - [817] = 801, - [818] = 805, - [819] = 801, - [820] = 804, - [821] = 805, - [822] = 801, - [823] = 812, - [824] = 805, - [825] = 804, - [826] = 812, - [827] = 827, - [828] = 828, - [829] = 796, - [830] = 830, - [831] = 831, + [811] = 809, + [812] = 808, + [813] = 806, + [814] = 810, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 808, + [819] = 817, + [820] = 809, + [821] = 817, + [822] = 806, + [823] = 810, + [824] = 806, + [825] = 809, + [826] = 810, + [827] = 806, + [828] = 817, + [829] = 810, + [830] = 809, + [831] = 817, [832] = 832, [833] = 833, - [834] = 834, + [834] = 801, [835] = 835, [836] = 836, [837] = 837, @@ -2841,36 +2848,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [853] = 853, [854] = 854, [855] = 855, - [856] = 830, - [857] = 831, + [856] = 856, + [857] = 857, [858] = 858, - [859] = 832, + [859] = 859, [860] = 860, - [861] = 840, - [862] = 858, + [861] = 835, + [862] = 836, [863] = 863, - [864] = 849, - [865] = 851, - [866] = 866, - [867] = 867, - [868] = 847, - [869] = 869, - [870] = 870, + [864] = 837, + [865] = 865, + [866] = 845, + [867] = 863, + [868] = 868, + [869] = 854, + [870] = 856, [871] = 871, [872] = 872, - [873] = 873, + [873] = 852, [874] = 874, [875] = 875, - [876] = 855, + [876] = 876, [877] = 877, [878] = 878, [879] = 879, - [880] = 595, - [881] = 881, + [880] = 880, + [881] = 860, [882] = 882, [883] = 883, [884] = 884, - [885] = 885, + [885] = 606, [886] = 886, [887] = 887, [888] = 888, @@ -2880,143 +2887,148 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [892] = 892, [893] = 893, [894] = 894, - [895] = 602, - [896] = 888, - [897] = 889, - [898] = 886, - [899] = 886, - [900] = 900, - [901] = 886, - [902] = 902, - [903] = 885, - [904] = 904, - [905] = 879, - [906] = 886, - [907] = 596, - [908] = 908, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 617, + [901] = 893, + [902] = 894, + [903] = 891, + [904] = 891, + [905] = 905, + [906] = 891, + [907] = 614, + [908] = 890, [909] = 909, - [910] = 910, - [911] = 886, - [912] = 888, - [913] = 889, - [914] = 889, + [910] = 884, + [911] = 891, + [912] = 912, + [913] = 913, + [914] = 914, [915] = 915, - [916] = 904, - [917] = 888, - [918] = 918, - [919] = 908, - [920] = 879, - [921] = 921, - [922] = 894, - [923] = 904, - [924] = 924, - [925] = 925, + [916] = 891, + [917] = 893, + [918] = 894, + [919] = 894, + [920] = 920, + [921] = 909, + [922] = 893, + [923] = 923, + [924] = 913, + [925] = 884, [926] = 926, - [927] = 894, - [928] = 928, - [929] = 908, + [927] = 899, + [928] = 909, + [929] = 929, [930] = 930, [931] = 931, - [932] = 931, + [932] = 899, [933] = 933, - [934] = 934, - [935] = 931, + [934] = 913, + [935] = 935, [936] = 936, - [937] = 937, + [937] = 936, [938] = 938, [939] = 939, - [940] = 931, + [940] = 936, [941] = 941, [942] = 942, - [943] = 941, - [944] = 941, - [945] = 945, - [946] = 936, + [943] = 943, + [944] = 944, + [945] = 936, + [946] = 946, [947] = 947, - [948] = 948, - [949] = 939, + [948] = 946, + [949] = 946, [950] = 950, - [951] = 951, + [951] = 941, [952] = 952, [953] = 953, - [954] = 933, + [954] = 944, [955] = 955, [956] = 956, [957] = 957, [958] = 958, - [959] = 959, + [959] = 938, [960] = 960, [961] = 961, [962] = 962, [963] = 963, - [964] = 959, + [964] = 964, [965] = 965, [966] = 966, [967] = 967, [968] = 968, - [969] = 969, + [969] = 964, [970] = 970, [971] = 971, [972] = 972, [973] = 973, - [974] = 961, + [974] = 974, [975] = 975, [976] = 976, [977] = 977, - [978] = 973, - [979] = 972, - [980] = 961, + [978] = 978, + [979] = 966, + [980] = 980, [981] = 981, - [982] = 966, - [983] = 959, - [984] = 966, - [985] = 985, + [982] = 982, + [983] = 978, + [984] = 977, + [985] = 966, [986] = 986, - [987] = 987, - [988] = 988, - [989] = 961, + [987] = 971, + [988] = 964, + [989] = 971, [990] = 990, - [991] = 977, - [992] = 960, - [993] = 987, - [994] = 994, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 966, [995] = 995, - [996] = 985, - [997] = 988, - [998] = 987, - [999] = 961, - [1000] = 986, - [1001] = 1001, - [1002] = 966, - [1003] = 988, + [996] = 982, + [997] = 965, + [998] = 992, + [999] = 999, + [1000] = 1000, + [1001] = 990, + [1002] = 993, + [1003] = 992, [1004] = 966, - [1005] = 959, + [1005] = 991, [1006] = 1006, - [1007] = 973, - [1008] = 972, - [1009] = 1009, - [1010] = 977, + [1007] = 971, + [1008] = 993, + [1009] = 971, + [1010] = 964, [1011] = 1011, - [1012] = 1012, - [1013] = 959, + [1012] = 978, + [1013] = 977, [1014] = 1014, - [1015] = 985, - [1016] = 966, + [1015] = 982, + [1016] = 1016, [1017] = 1017, - [1018] = 985, + [1018] = 964, [1019] = 1019, - [1020] = 1020, - [1021] = 990, - [1022] = 994, - [1023] = 986, - [1024] = 1011, - [1025] = 977, - [1026] = 994, - [1027] = 986, - [1028] = 994, - [1029] = 959, - [1030] = 1030, - [1031] = 537, + [1020] = 990, + [1021] = 971, + [1022] = 1022, + [1023] = 990, + [1024] = 1024, + [1025] = 1025, + [1026] = 995, + [1027] = 999, + [1028] = 991, + [1029] = 1016, + [1030] = 982, + [1031] = 999, + [1032] = 991, + [1033] = 999, + [1034] = 964, + [1035] = 1035, + [1036] = 556, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -4673,19 +4685,20 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( 'a', 1, 'c', 2, - 'e', 3, - 'f', 4, - 'h', 5, - 'i', 6, - 'l', 7, - 'm', 8, - 'n', 9, - 'o', 10, - 'r', 11, - 's', 12, - 't', 13, - 'u', 14, - 'w', 15, + 'd', 3, + 'e', 4, + 'f', 5, + 'h', 6, + 'i', 7, + 'l', 8, + 'm', 9, + 'n', 10, + 'o', 11, + 'r', 12, + 's', 13, + 't', 14, + 'u', 15, + 'w', 16, ); if (lookahead == '\t' || lookahead == '\n' || @@ -4695,455 +4708,473 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == ';') SKIP(0); END_STATE(); case 1: - if (lookahead == 'b') ADVANCE(16); - if (lookahead == 'm') ADVANCE(17); - if (lookahead == 's') ADVANCE(18); + if (lookahead == 'b') ADVANCE(17); + if (lookahead == 'm') ADVANCE(18); + if (lookahead == 's') ADVANCE(19); END_STATE(); case 2: - if (lookahead == 'l') ADVANCE(19); - if (lookahead == 'o') ADVANCE(20); + if (lookahead == 'l') ADVANCE(20); + if (lookahead == 'o') ADVANCE(21); END_STATE(); case 3: - if (lookahead == 'l') ADVANCE(21); - if (lookahead == 'x') ADVANCE(22); + if (lookahead == 'e') ADVANCE(22); END_STATE(); case 4: - if (lookahead == 'a') ADVANCE(23); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'o') ADVANCE(25); - if (lookahead == 'u') ADVANCE(26); + if (lookahead == 'l') ADVANCE(23); + if (lookahead == 'x') ADVANCE(24); END_STATE(); case 5: - if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'a') ADVANCE(25); + if (lookahead == 'i') ADVANCE(26); + if (lookahead == 'o') ADVANCE(27); + if (lookahead == 'u') ADVANCE(28); END_STATE(); case 6: - if (lookahead == 'f') ADVANCE(28); - if (lookahead == 'm') ADVANCE(29); - if (lookahead == 'n') ADVANCE(30); - if (lookahead == 's') ADVANCE(31); + if (lookahead == 'i') ADVANCE(29); END_STATE(); case 7: - if (lookahead == 'e') ADVANCE(32); - if (lookahead == 'o') ADVANCE(33); + if (lookahead == 'f') ADVANCE(30); + if (lookahead == 'm') ADVANCE(31); + if (lookahead == 'n') ADVANCE(32); + if (lookahead == 's') ADVANCE(33); END_STATE(); case 8: - if (lookahead == 'o') ADVANCE(34); + if (lookahead == 'e') ADVANCE(34); + if (lookahead == 'o') ADVANCE(35); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(35); if (lookahead == 'o') ADVANCE(36); - if (lookahead == 'u') ADVANCE(37); END_STATE(); case 10: - if (lookahead == 'p') ADVANCE(38); + if (lookahead == 'e') ADVANCE(37); + if (lookahead == 'o') ADVANCE(38); if (lookahead == 'u') ADVANCE(39); END_STATE(); case 11: - if (lookahead == 'e') ADVANCE(40); + if (lookahead == 'p') ADVANCE(40); + if (lookahead == 'u') ADVANCE(41); END_STATE(); case 12: - if (lookahead == 'u') ADVANCE(41); + if (lookahead == 'e') ADVANCE(42); END_STATE(); case 13: - if (lookahead == 'h') ADVANCE(42); - if (lookahead == 'r') ADVANCE(43); - if (lookahead == 'y') ADVANCE(44); + if (lookahead == 'u') ADVANCE(43); END_STATE(); case 14: - if (lookahead == 'n') ADVANCE(45); + if (lookahead == 'h') ADVANCE(44); + if (lookahead == 'r') ADVANCE(45); + if (lookahead == 'y') ADVANCE(46); END_STATE(); case 15: - if (lookahead == 'h') ADVANCE(46); + if (lookahead == 'n') ADVANCE(47); END_STATE(); case 16: - if (lookahead == 's') ADVANCE(47); + if (lookahead == 'h') ADVANCE(48); END_STATE(); case 17: - if (lookahead == 'e') ADVANCE(48); + if (lookahead == 's') ADVANCE(49); END_STATE(); case 18: - ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'e') ADVANCE(50); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(49); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 20: - if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'a') ADVANCE(51); END_STATE(); case 21: - if (lookahead == 's') ADVANCE(51); + if (lookahead == 'n') ADVANCE(52); END_STATE(); case 22: - if (lookahead == 't') ADVANCE(52); + if (lookahead == 'l') ADVANCE(53); END_STATE(); case 23: - if (lookahead == 'l') ADVANCE(53); + if (lookahead == 's') ADVANCE(54); END_STATE(); case 24: - if (lookahead == 'x') ADVANCE(54); + if (lookahead == 't') ADVANCE(55); END_STATE(); case 25: - if (lookahead == 'r') ADVANCE(55); + if (lookahead == 'l') ADVANCE(56); END_STATE(); case 26: - if (lookahead == 'n') ADVANCE(56); + if (lookahead == 'x') ADVANCE(57); END_STATE(); case 27: - if (lookahead == 'd') ADVANCE(57); + if (lookahead == 'r') ADVANCE(58); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'n') ADVANCE(59); END_STATE(); case 29: - if (lookahead == 'p') ADVANCE(58); + if (lookahead == 'd') ADVANCE(60); END_STATE(); case 30: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_is); + if (lookahead == 'p') ADVANCE(61); END_STATE(); case 32: - if (lookahead == 't') ADVANCE(59); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 33: - if (lookahead == 'c') ADVANCE(60); + ACCEPT_TOKEN(anon_sym_is); END_STATE(); case 34: - if (lookahead == 'd') ADVANCE(61); + if (lookahead == 't') ADVANCE(62); END_STATE(); case 35: - if (lookahead == 'w') ADVANCE(62); + if (lookahead == 'c') ADVANCE(63); END_STATE(); case 36: - if (lookahead == 't') ADVANCE(63); + if (lookahead == 'd') ADVANCE(64); END_STATE(); case 37: - if (lookahead == 'l') ADVANCE(64); + if (lookahead == 'w') ADVANCE(65); END_STATE(); case 38: - if (lookahead == 'e') ADVANCE(65); + if (lookahead == 't') ADVANCE(66); END_STATE(); case 39: - if (lookahead == 't') ADVANCE(66); + if (lookahead == 'l') ADVANCE(67); END_STATE(); case 40: - if (lookahead == 'a') ADVANCE(67); + if (lookahead == 'e') ADVANCE(68); END_STATE(); case 41: - if (lookahead == 'p') ADVANCE(68); + if (lookahead == 't') ADVANCE(69); END_STATE(); case 42: - if (lookahead == 'i') ADVANCE(69); - if (lookahead == 'r') ADVANCE(70); + if (lookahead == 'a') ADVANCE(70); END_STATE(); case 43: - if (lookahead == 'a') ADVANCE(71); - if (lookahead == 'u') ADVANCE(72); + if (lookahead == 'p') ADVANCE(71); END_STATE(); case 44: - if (lookahead == 'p') ADVANCE(73); + if (lookahead == 'i') ADVANCE(72); + if (lookahead == 'r') ADVANCE(73); END_STATE(); case 45: - if (lookahead == 'k') ADVANCE(74); + if (lookahead == 'a') ADVANCE(74); + if (lookahead == 'u') ADVANCE(75); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(75); + if (lookahead == 'p') ADVANCE(76); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(76); + if (lookahead == 'k') ADVANCE(77); END_STATE(); case 48: - if (lookahead == 'n') ADVANCE(77); + if (lookahead == 'e') ADVANCE(78); END_STATE(); case 49: - if (lookahead == 's') ADVANCE(78); + if (lookahead == 't') ADVANCE(79); END_STATE(); case 50: - if (lookahead == 's') ADVANCE(79); + if (lookahead == 'n') ADVANCE(80); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(80); + if (lookahead == 's') ADVANCE(81); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(81); + if (lookahead == 's') ADVANCE(82); END_STATE(); case 53: - if (lookahead == 's') ADVANCE(82); + if (lookahead == 'e') ADVANCE(83); END_STATE(); case 54: - if (lookahead == 'e') ADVANCE(83); + if (lookahead == 'e') ADVANCE(84); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'e') ADVANCE(85); END_STATE(); case 56: - if (lookahead == 'c') ADVANCE(84); + if (lookahead == 's') ADVANCE(86); END_STATE(); case 57: - if (lookahead == 'd') ADVANCE(85); + if (lookahead == 'e') ADVANCE(87); END_STATE(); case 58: - if (lookahead == 'o') ADVANCE(86); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'c') ADVANCE(88); END_STATE(); case 60: - if (lookahead == 'a') ADVANCE(87); + if (lookahead == 'd') ADVANCE(89); END_STATE(); case 61: - if (lookahead == 'u') ADVANCE(88); + if (lookahead == 'o') ADVANCE(90); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_new); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 63: - if (lookahead == 'h') ADVANCE(89); + if (lookahead == 'a') ADVANCE(91); END_STATE(); case 64: - if (lookahead == 'l') ADVANCE(90); + if (lookahead == 'u') ADVANCE(92); END_STATE(); case 65: - if (lookahead == 'n') ADVANCE(91); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_out); - if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'h') ADVANCE(93); END_STATE(); case 67: - if (lookahead == 'd') ADVANCE(93); + if (lookahead == 'l') ADVANCE(94); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'n') ADVANCE(95); END_STATE(); case 69: - if (lookahead == 's') ADVANCE(95); + ACCEPT_TOKEN(anon_sym_out); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 70: - if (lookahead == 'o') ADVANCE(96); + if (lookahead == 'd') ADVANCE(97); END_STATE(); case 71: - if (lookahead == 'c') ADVANCE(97); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(98); + if (lookahead == 's') ADVANCE(99); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'o') ADVANCE(100); END_STATE(); case 74: - if (lookahead == 'n') ADVANCE(100); + if (lookahead == 'c') ADVANCE(101); END_STATE(); case 75: - if (lookahead == 'n') ADVANCE(101); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 76: - if (lookahead == 'r') ADVANCE(102); + if (lookahead == 'e') ADVANCE(103); END_STATE(); case 77: - if (lookahead == 'd') ADVANCE(103); + if (lookahead == 'n') ADVANCE(104); END_STATE(); case 78: - if (lookahead == 's') ADVANCE(104); + if (lookahead == 'n') ADVANCE(105); END_STATE(); case 79: - if (lookahead == 't') ADVANCE(105); + if (lookahead == 'r') ADVANCE(106); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'd') ADVANCE(107); END_STATE(); case 81: - if (lookahead == 'n') ADVANCE(106); - if (lookahead == 'r') ADVANCE(107); + if (lookahead == 's') ADVANCE(108); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(108); + if (lookahead == 't') ADVANCE(109); END_STATE(); case 83: - if (lookahead == 'd') ADVANCE(109); + if (lookahead == 't') ADVANCE(110); END_STATE(); case 84: - if (lookahead == 't') ADVANCE(110); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(111); + if (lookahead == 'n') ADVANCE(111); + if (lookahead == 'r') ADVANCE(112); END_STATE(); case 86: - if (lookahead == 'r') ADVANCE(112); + if (lookahead == 'e') ADVANCE(113); END_STATE(); case 87: - if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'd') ADVANCE(114); END_STATE(); case 88: - if (lookahead == 'l') ADVANCE(114); + if (lookahead == 't') ADVANCE(115); END_STATE(); case 89: - if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'e') ADVANCE(116); END_STATE(); case 90: - ACCEPT_TOKEN(sym_nullLiteral); + if (lookahead == 'r') ADVANCE(117); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_open); + if (lookahead == 'l') ADVANCE(118); END_STATE(); case 92: - if (lookahead == 'r') ADVANCE(116); + if (lookahead == 'l') ADVANCE(119); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_read); + if (lookahead == 'i') ADVANCE(120); END_STATE(); case 94: - if (lookahead == 'r') ADVANCE(117); + ACCEPT_TOKEN(sym_nullLiteral); END_STATE(); case 95: - ACCEPT_TOKEN(sym_thisExpr); + ACCEPT_TOKEN(anon_sym_open); END_STATE(); case 96: - if (lookahead == 'w') ADVANCE(118); + if (lookahead == 'r') ADVANCE(121); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_read); END_STATE(); case 98: - ACCEPT_TOKEN(sym_trueLiteral); + if (lookahead == 'r') ADVANCE(122); END_STATE(); case 99: - if (lookahead == 'a') ADVANCE(120); + ACCEPT_TOKEN(sym_thisExpr); END_STATE(); case 100: - if (lookahead == 'o') ADVANCE(121); + if (lookahead == 'w') ADVANCE(123); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_when); + if (lookahead == 'e') ADVANCE(124); END_STATE(); case 102: - if (lookahead == 'a') ADVANCE(122); + ACCEPT_TOKEN(sym_trueLiteral); END_STATE(); case 103: - if (lookahead == 's') ADVANCE(123); + if (lookahead == 'a') ADVANCE(125); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_class); + if (lookahead == 'o') ADVANCE(126); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_when); END_STATE(); case 106: - if (lookahead == 'd') ADVANCE(124); + if (lookahead == 'a') ADVANCE(127); END_STATE(); case 107: - if (lookahead == 'n') ADVANCE(125); + if (lookahead == 's') ADVANCE(128); END_STATE(); case 108: - ACCEPT_TOKEN(sym_falseLiteral); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_fixed); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 110: - if (lookahead == 'i') ADVANCE(126); + if (lookahead == 'e') ADVANCE(129); END_STATE(); case 111: - if (lookahead == 'n') ADVANCE(127); + if (lookahead == 'd') ADVANCE(130); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(128); + if (lookahead == 'n') ADVANCE(131); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_local); + ACCEPT_TOKEN(sym_falseLiteral); END_STATE(); case 114: - if (lookahead == 'e') ADVANCE(129); + ACCEPT_TOKEN(anon_sym_fixed); END_STATE(); case 115: - if (lookahead == 'n') ADVANCE(130); + if (lookahead == 'i') ADVANCE(132); END_STATE(); case 116: - ACCEPT_TOKEN(sym_outerExpr); + if (lookahead == 'n') ADVANCE(133); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_super); + if (lookahead == 't') ADVANCE(134); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_throw); + ACCEPT_TOKEN(anon_sym_local); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_trace); + if (lookahead == 'e') ADVANCE(135); END_STATE(); case 120: - if (lookahead == 'l') ADVANCE(131); + if (lookahead == 'n') ADVANCE(136); END_STATE(); case 121: - if (lookahead == 'w') ADVANCE(132); + ACCEPT_TOKEN(sym_outerExpr); END_STATE(); case 122: - if (lookahead == 'c') ADVANCE(133); + ACCEPT_TOKEN(anon_sym_super); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_amends); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 124: - if (lookahead == 's') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_trace); END_STATE(); case 125: - if (lookahead == 'a') ADVANCE(135); + if (lookahead == 'l') ADVANCE(137); END_STATE(); case 126: - if (lookahead == 'o') ADVANCE(136); + if (lookahead == 'w') ADVANCE(138); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_hidden); + if (lookahead == 'c') ADVANCE(139); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_import); + ACCEPT_TOKEN(anon_sym_amends); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(sym_delete); END_STATE(); case 130: - if (lookahead == 'g') ADVANCE(137); + if (lookahead == 's') ADVANCE(140); END_STATE(); case 131: - if (lookahead == 'i') ADVANCE(138); + if (lookahead == 'a') ADVANCE(141); END_STATE(); case 132: - if (lookahead == 'n') ADVANCE(139); + if (lookahead == 'o') ADVANCE(142); END_STATE(); case 133: - if (lookahead == 't') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_hidden); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_extends); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 135: - if (lookahead == 'l') ADVANCE(141); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 136: - if (lookahead == 'n') ADVANCE(142); + if (lookahead == 'g') ADVANCE(143); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_nothing); + if (lookahead == 'i') ADVANCE(144); END_STATE(); case 138: - if (lookahead == 'a') ADVANCE(143); + if (lookahead == 'n') ADVANCE(145); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_unknown); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_abstract); + ACCEPT_TOKEN(anon_sym_extends); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_external); + if (lookahead == 'l') ADVANCE(147); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'n') ADVANCE(148); END_STATE(); case 143: - if (lookahead == 's') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_nothing); END_STATE(); case 144: + if (lookahead == 'a') ADVANCE(149); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_unknown); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_abstract); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_external); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 149: + if (lookahead == 's') ADVANCE(150); + END_STATE(); + case 150: ACCEPT_TOKEN(anon_sym_typealias); END_STATE(); default: @@ -5176,17 +5207,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 7}, [22] = {.lex_state = 7}, [23] = {.lex_state = 2, .external_lex_state = 2}, - [24] = {.lex_state = 2, .external_lex_state = 2}, + [24] = {.lex_state = 2, .external_lex_state = 3}, [25] = {.lex_state = 2, .external_lex_state = 3}, - [26] = {.lex_state = 2, .external_lex_state = 3}, + [26] = {.lex_state = 2, .external_lex_state = 2}, [27] = {.lex_state = 2, .external_lex_state = 3}, [28] = {.lex_state = 2, .external_lex_state = 3}, - [29] = {.lex_state = 2, .external_lex_state = 3}, - [30] = {.lex_state = 2, .external_lex_state = 2}, + [29] = {.lex_state = 2, .external_lex_state = 2}, + [30] = {.lex_state = 2, .external_lex_state = 3}, [31] = {.lex_state = 2, .external_lex_state = 3}, [32] = {.lex_state = 2, .external_lex_state = 3}, [33] = {.lex_state = 2, .external_lex_state = 3}, - [34] = {.lex_state = 2, .external_lex_state = 3}, + [34] = {.lex_state = 2, .external_lex_state = 2}, [35] = {.lex_state = 2, .external_lex_state = 3}, [36] = {.lex_state = 2, .external_lex_state = 3}, [37] = {.lex_state = 2, .external_lex_state = 3}, @@ -5199,7 +5230,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [44] = {.lex_state = 2, .external_lex_state = 3}, [45] = {.lex_state = 2, .external_lex_state = 3}, [46] = {.lex_state = 2, .external_lex_state = 3}, - [47] = {.lex_state = 2, .external_lex_state = 2}, + [47] = {.lex_state = 2, .external_lex_state = 3}, [48] = {.lex_state = 2, .external_lex_state = 3}, [49] = {.lex_state = 2, .external_lex_state = 3}, [50] = {.lex_state = 2, .external_lex_state = 3}, @@ -5411,11 +5442,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [256] = {.lex_state = 7}, [257] = {.lex_state = 7}, [258] = {.lex_state = 7}, - [259] = {.lex_state = 153, .external_lex_state = 3}, - [260] = {.lex_state = 153, .external_lex_state = 3}, - [261] = {.lex_state = 153, .external_lex_state = 3}, - [262] = {.lex_state = 153, .external_lex_state = 3}, - [263] = {.lex_state = 153, .external_lex_state = 3}, + [259] = {.lex_state = 7}, + [260] = {.lex_state = 7}, + [261] = {.lex_state = 7}, + [262] = {.lex_state = 7}, + [263] = {.lex_state = 7}, [264] = {.lex_state = 153, .external_lex_state = 3}, [265] = {.lex_state = 153, .external_lex_state = 3}, [266] = {.lex_state = 153, .external_lex_state = 3}, @@ -5429,19 +5460,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [274] = {.lex_state = 153, .external_lex_state = 3}, [275] = {.lex_state = 153, .external_lex_state = 3}, [276] = {.lex_state = 153, .external_lex_state = 3}, - [277] = {.lex_state = 153, .external_lex_state = 2}, + [277] = {.lex_state = 153, .external_lex_state = 3}, [278] = {.lex_state = 153, .external_lex_state = 3}, [279] = {.lex_state = 153, .external_lex_state = 3}, [280] = {.lex_state = 153, .external_lex_state = 3}, [281] = {.lex_state = 153, .external_lex_state = 3}, [282] = {.lex_state = 153, .external_lex_state = 3}, [283] = {.lex_state = 153, .external_lex_state = 3}, - [284] = {.lex_state = 153, .external_lex_state = 2}, - [285] = {.lex_state = 153, .external_lex_state = 3}, + [284] = {.lex_state = 153, .external_lex_state = 3}, + [285] = {.lex_state = 153, .external_lex_state = 2}, [286] = {.lex_state = 153, .external_lex_state = 3}, [287] = {.lex_state = 153, .external_lex_state = 3}, [288] = {.lex_state = 153, .external_lex_state = 3}, - [289] = {.lex_state = 153, .external_lex_state = 3}, + [289] = {.lex_state = 153, .external_lex_state = 2}, [290] = {.lex_state = 153, .external_lex_state = 3}, [291] = {.lex_state = 153, .external_lex_state = 3}, [292] = {.lex_state = 153, .external_lex_state = 3}, @@ -5490,89 +5521,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [335] = {.lex_state = 153, .external_lex_state = 3}, [336] = {.lex_state = 153, .external_lex_state = 3}, [337] = {.lex_state = 153, .external_lex_state = 3}, - [338] = {.lex_state = 10, .external_lex_state = 3}, - [339] = {.lex_state = 156}, - [340] = {.lex_state = 156}, - [341] = {.lex_state = 156}, - [342] = {.lex_state = 156}, - [343] = {.lex_state = 10, .external_lex_state = 2}, + [338] = {.lex_state = 153, .external_lex_state = 3}, + [339] = {.lex_state = 153, .external_lex_state = 3}, + [340] = {.lex_state = 153, .external_lex_state = 3}, + [341] = {.lex_state = 153, .external_lex_state = 3}, + [342] = {.lex_state = 153, .external_lex_state = 3}, + [343] = {.lex_state = 156}, [344] = {.lex_state = 156}, [345] = {.lex_state = 10, .external_lex_state = 3}, [346] = {.lex_state = 156}, - [347] = {.lex_state = 156}, + [347] = {.lex_state = 10, .external_lex_state = 2}, [348] = {.lex_state = 156}, [349] = {.lex_state = 156}, - [350] = {.lex_state = 8, .external_lex_state = 3}, - [351] = {.lex_state = 8, .external_lex_state = 3}, - [352] = {.lex_state = 8, .external_lex_state = 3}, - [353] = {.lex_state = 8, .external_lex_state = 3}, - [354] = {.lex_state = 8, .external_lex_state = 3}, + [350] = {.lex_state = 10, .external_lex_state = 3}, + [351] = {.lex_state = 156}, + [352] = {.lex_state = 156}, + [353] = {.lex_state = 156}, + [354] = {.lex_state = 156}, [355] = {.lex_state = 8, .external_lex_state = 3}, [356] = {.lex_state = 8, .external_lex_state = 3}, - [357] = {.lex_state = 10, .external_lex_state = 3}, - [358] = {.lex_state = 10, .external_lex_state = 3}, + [357] = {.lex_state = 8, .external_lex_state = 3}, + [358] = {.lex_state = 8, .external_lex_state = 3}, [359] = {.lex_state = 8, .external_lex_state = 3}, - [360] = {.lex_state = 8, .external_lex_state = 3}, + [360] = {.lex_state = 8, .external_lex_state = 2}, [361] = {.lex_state = 10, .external_lex_state = 3}, [362] = {.lex_state = 8, .external_lex_state = 3}, [363] = {.lex_state = 8, .external_lex_state = 3}, - [364] = {.lex_state = 8, .external_lex_state = 3}, - [365] = {.lex_state = 10, .external_lex_state = 3}, - [366] = {.lex_state = 10, .external_lex_state = 3}, + [364] = {.lex_state = 10, .external_lex_state = 3}, + [365] = {.lex_state = 8, .external_lex_state = 3}, + [366] = {.lex_state = 8, .external_lex_state = 3}, [367] = {.lex_state = 8, .external_lex_state = 3}, [368] = {.lex_state = 8, .external_lex_state = 3}, - [369] = {.lex_state = 10, .external_lex_state = 3}, + [369] = {.lex_state = 8, .external_lex_state = 3}, [370] = {.lex_state = 8, .external_lex_state = 3}, - [371] = {.lex_state = 10, .external_lex_state = 3}, - [372] = {.lex_state = 10, .external_lex_state = 3}, + [371] = {.lex_state = 8, .external_lex_state = 3}, + [372] = {.lex_state = 8, .external_lex_state = 3}, [373] = {.lex_state = 8, .external_lex_state = 3}, - [374] = {.lex_state = 10, .external_lex_state = 3}, - [375] = {.lex_state = 10, .external_lex_state = 3}, + [374] = {.lex_state = 8, .external_lex_state = 3}, + [375] = {.lex_state = 8, .external_lex_state = 3}, [376] = {.lex_state = 8, .external_lex_state = 3}, [377] = {.lex_state = 8, .external_lex_state = 3}, - [378] = {.lex_state = 10, .external_lex_state = 3}, - [379] = {.lex_state = 8, .external_lex_state = 3}, + [378] = {.lex_state = 8, .external_lex_state = 3}, + [379] = {.lex_state = 10, .external_lex_state = 3}, [380] = {.lex_state = 10, .external_lex_state = 3}, - [381] = {.lex_state = 8, .external_lex_state = 3}, - [382] = {.lex_state = 8, .external_lex_state = 2}, - [383] = {.lex_state = 8, .external_lex_state = 3}, + [381] = {.lex_state = 10, .external_lex_state = 3}, + [382] = {.lex_state = 10, .external_lex_state = 3}, + [383] = {.lex_state = 10, .external_lex_state = 3}, [384] = {.lex_state = 8, .external_lex_state = 3}, [385] = {.lex_state = 10, .external_lex_state = 3}, - [386] = {.lex_state = 10, .external_lex_state = 3}, + [386] = {.lex_state = 8, .external_lex_state = 3}, [387] = {.lex_state = 10, .external_lex_state = 3}, - [388] = {.lex_state = 8, .external_lex_state = 3}, + [388] = {.lex_state = 10, .external_lex_state = 3}, [389] = {.lex_state = 10, .external_lex_state = 3}, [390] = {.lex_state = 10, .external_lex_state = 3}, - [391] = {.lex_state = 8, .external_lex_state = 3}, - [392] = {.lex_state = 156}, - [393] = {.lex_state = 8, .external_lex_state = 2}, - [394] = {.lex_state = 156}, - [395] = {.lex_state = 155}, - [396] = {.lex_state = 155}, - [397] = {.lex_state = 10, .external_lex_state = 3}, - [398] = {.lex_state = 153}, - [399] = {.lex_state = 10, .external_lex_state = 3}, - [400] = {.lex_state = 153}, + [391] = {.lex_state = 10, .external_lex_state = 3}, + [392] = {.lex_state = 10, .external_lex_state = 3}, + [393] = {.lex_state = 8, .external_lex_state = 3}, + [394] = {.lex_state = 10, .external_lex_state = 3}, + [395] = {.lex_state = 10, .external_lex_state = 3}, + [396] = {.lex_state = 10, .external_lex_state = 3}, + [397] = {.lex_state = 8, .external_lex_state = 2}, + [398] = {.lex_state = 156}, + [399] = {.lex_state = 155}, + [400] = {.lex_state = 156}, [401] = {.lex_state = 8, .external_lex_state = 3}, - [402] = {.lex_state = 10, .external_lex_state = 3}, - [403] = {.lex_state = 155}, - [404] = {.lex_state = 10, .external_lex_state = 3}, - [405] = {.lex_state = 153}, - [406] = {.lex_state = 155}, - [407] = {.lex_state = 153}, - [408] = {.lex_state = 10, .external_lex_state = 3}, - [409] = {.lex_state = 153}, - [410] = {.lex_state = 10, .external_lex_state = 3}, + [402] = {.lex_state = 155}, + [403] = {.lex_state = 10, .external_lex_state = 3}, + [404] = {.lex_state = 153}, + [405] = {.lex_state = 10, .external_lex_state = 3}, + [406] = {.lex_state = 153}, + [407] = {.lex_state = 10, .external_lex_state = 3}, + [408] = {.lex_state = 153}, + [409] = {.lex_state = 10, .external_lex_state = 3}, + [410] = {.lex_state = 155}, [411] = {.lex_state = 10, .external_lex_state = 3}, - [412] = {.lex_state = 8, .external_lex_state = 3}, - [413] = {.lex_state = 8, .external_lex_state = 3}, - [414] = {.lex_state = 8, .external_lex_state = 3}, - [415] = {.lex_state = 155}, - [416] = {.lex_state = 8, .external_lex_state = 3}, + [412] = {.lex_state = 155}, + [413] = {.lex_state = 153}, + [414] = {.lex_state = 153}, + [415] = {.lex_state = 10, .external_lex_state = 3}, + [416] = {.lex_state = 10, .external_lex_state = 3}, [417] = {.lex_state = 8, .external_lex_state = 3}, [418] = {.lex_state = 8, .external_lex_state = 3}, [419] = {.lex_state = 8, .external_lex_state = 3}, - [420] = {.lex_state = 155}, + [420] = {.lex_state = 8, .external_lex_state = 3}, [421] = {.lex_state = 8, .external_lex_state = 3}, [422] = {.lex_state = 8, .external_lex_state = 3}, [423] = {.lex_state = 8, .external_lex_state = 3}, @@ -5581,54 +5612,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [426] = {.lex_state = 8, .external_lex_state = 3}, [427] = {.lex_state = 8, .external_lex_state = 3}, [428] = {.lex_state = 8, .external_lex_state = 3}, - [429] = {.lex_state = 8, .external_lex_state = 3}, - [430] = {.lex_state = 8, .external_lex_state = 3}, + [429] = {.lex_state = 155}, + [430] = {.lex_state = 155}, [431] = {.lex_state = 8, .external_lex_state = 3}, [432] = {.lex_state = 8, .external_lex_state = 3}, - [433] = {.lex_state = 8, .external_lex_state = 3}, - [434] = {.lex_state = 8, .external_lex_state = 3}, - [435] = {.lex_state = 155}, + [433] = {.lex_state = 155}, + [434] = {.lex_state = 155}, + [435] = {.lex_state = 8, .external_lex_state = 3}, [436] = {.lex_state = 8, .external_lex_state = 3}, - [437] = {.lex_state = 8, .external_lex_state = 3}, - [438] = {.lex_state = 155}, + [437] = {.lex_state = 155}, + [438] = {.lex_state = 8, .external_lex_state = 3}, [439] = {.lex_state = 8, .external_lex_state = 3}, [440] = {.lex_state = 8, .external_lex_state = 3}, [441] = {.lex_state = 8, .external_lex_state = 3}, - [442] = {.lex_state = 155}, + [442] = {.lex_state = 8, .external_lex_state = 3}, [443] = {.lex_state = 8, .external_lex_state = 3}, [444] = {.lex_state = 8, .external_lex_state = 3}, - [445] = {.lex_state = 8, .external_lex_state = 3}, - [446] = {.lex_state = 155}, - [447] = {.lex_state = 8, .external_lex_state = 3}, - [448] = {.lex_state = 8, .external_lex_state = 3}, - [449] = {.lex_state = 8, .external_lex_state = 3}, + [445] = {.lex_state = 155}, + [446] = {.lex_state = 8, .external_lex_state = 3}, + [447] = {.lex_state = 155}, + [448] = {.lex_state = 155}, + [449] = {.lex_state = 155}, [450] = {.lex_state = 8, .external_lex_state = 3}, - [451] = {.lex_state = 155}, - [452] = {.lex_state = 8, .external_lex_state = 3}, + [451] = {.lex_state = 8, .external_lex_state = 3}, + [452] = {.lex_state = 155}, [453] = {.lex_state = 155}, - [454] = {.lex_state = 155}, + [454] = {.lex_state = 8, .external_lex_state = 3}, [455] = {.lex_state = 155}, [456] = {.lex_state = 155}, - [457] = {.lex_state = 155}, + [457] = {.lex_state = 8, .external_lex_state = 3}, [458] = {.lex_state = 155}, - [459] = {.lex_state = 155}, - [460] = {.lex_state = 8, .external_lex_state = 3}, + [459] = {.lex_state = 8, .external_lex_state = 3}, + [460] = {.lex_state = 155}, [461] = {.lex_state = 8, .external_lex_state = 3}, [462] = {.lex_state = 8, .external_lex_state = 3}, [463] = {.lex_state = 8, .external_lex_state = 3}, - [464] = {.lex_state = 155}, + [464] = {.lex_state = 8, .external_lex_state = 3}, [465] = {.lex_state = 8, .external_lex_state = 3}, [466] = {.lex_state = 8, .external_lex_state = 3}, [467] = {.lex_state = 8, .external_lex_state = 3}, [468] = {.lex_state = 8, .external_lex_state = 3}, [469] = {.lex_state = 8, .external_lex_state = 3}, [470] = {.lex_state = 8, .external_lex_state = 3}, - [471] = {.lex_state = 10, .external_lex_state = 3}, + [471] = {.lex_state = 8, .external_lex_state = 3}, [472] = {.lex_state = 10, .external_lex_state = 3}, - [473] = {.lex_state = 10, .external_lex_state = 3}, - [474] = {.lex_state = 10, .external_lex_state = 3}, - [475] = {.lex_state = 10, .external_lex_state = 3}, - [476] = {.lex_state = 10, .external_lex_state = 3}, + [473] = {.lex_state = 8, .external_lex_state = 3}, + [474] = {.lex_state = 8, .external_lex_state = 3}, + [475] = {.lex_state = 8, .external_lex_state = 3}, + [476] = {.lex_state = 8, .external_lex_state = 3}, [477] = {.lex_state = 10, .external_lex_state = 3}, [478] = {.lex_state = 10, .external_lex_state = 3}, [479] = {.lex_state = 10, .external_lex_state = 3}, @@ -5649,11 +5680,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [494] = {.lex_state = 10, .external_lex_state = 3}, [495] = {.lex_state = 10, .external_lex_state = 3}, [496] = {.lex_state = 10, .external_lex_state = 3}, - [497] = {.lex_state = 10, .external_lex_state = 3}, + [497] = {.lex_state = 8, .external_lex_state = 3}, [498] = {.lex_state = 10, .external_lex_state = 3}, [499] = {.lex_state = 10, .external_lex_state = 3}, [500] = {.lex_state = 10, .external_lex_state = 3}, - [501] = {.lex_state = 8, .external_lex_state = 3}, + [501] = {.lex_state = 10, .external_lex_state = 3}, [502] = {.lex_state = 10, .external_lex_state = 3}, [503] = {.lex_state = 10, .external_lex_state = 3}, [504] = {.lex_state = 10, .external_lex_state = 3}, @@ -5662,71 +5693,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [507] = {.lex_state = 10, .external_lex_state = 3}, [508] = {.lex_state = 10, .external_lex_state = 3}, [509] = {.lex_state = 10, .external_lex_state = 3}, - [510] = {.lex_state = 153}, - [511] = {.lex_state = 153}, - [512] = {.lex_state = 153}, - [513] = {.lex_state = 153}, - [514] = {.lex_state = 155}, + [510] = {.lex_state = 10, .external_lex_state = 3}, + [511] = {.lex_state = 10, .external_lex_state = 3}, + [512] = {.lex_state = 10, .external_lex_state = 3}, + [513] = {.lex_state = 10, .external_lex_state = 3}, + [514] = {.lex_state = 10, .external_lex_state = 3}, [515] = {.lex_state = 153}, - [516] = {.lex_state = 155}, + [516] = {.lex_state = 153}, [517] = {.lex_state = 153}, - [518] = {.lex_state = 155}, + [518] = {.lex_state = 153}, [519] = {.lex_state = 155}, [520] = {.lex_state = 155}, - [521] = {.lex_state = 155}, + [521] = {.lex_state = 153}, [522] = {.lex_state = 153}, - [523] = {.lex_state = 153}, + [523] = {.lex_state = 155}, [524] = {.lex_state = 155}, - [525] = {.lex_state = 155}, + [525] = {.lex_state = 153}, [526] = {.lex_state = 155}, [527] = {.lex_state = 155}, - [528] = {.lex_state = 153}, + [528] = {.lex_state = 155}, [529] = {.lex_state = 155}, [530] = {.lex_state = 155}, [531] = {.lex_state = 153}, [532] = {.lex_state = 155}, - [533] = {.lex_state = 156}, + [533] = {.lex_state = 153}, [534] = {.lex_state = 155}, [535] = {.lex_state = 155}, [536] = {.lex_state = 155}, - [537] = {.lex_state = 156}, + [537] = {.lex_state = 153}, [538] = {.lex_state = 155}, - [539] = {.lex_state = 155}, - [540] = {.lex_state = 155}, + [539] = {.lex_state = 153}, + [540] = {.lex_state = 156}, [541] = {.lex_state = 155}, - [542] = {.lex_state = 156}, + [542] = {.lex_state = 155}, [543] = {.lex_state = 155}, [544] = {.lex_state = 155}, [545] = {.lex_state = 155}, [546] = {.lex_state = 155}, - [547] = {.lex_state = 155}, - [548] = {.lex_state = 153}, + [547] = {.lex_state = 153}, + [548] = {.lex_state = 155}, [549] = {.lex_state = 155}, - [550] = {.lex_state = 156}, - [551] = {.lex_state = 156}, - [552] = {.lex_state = 155}, + [550] = {.lex_state = 155}, + [551] = {.lex_state = 155}, + [552] = {.lex_state = 153}, [553] = {.lex_state = 155}, [554] = {.lex_state = 155}, [555] = {.lex_state = 155}, - [556] = {.lex_state = 155}, + [556] = {.lex_state = 156}, [557] = {.lex_state = 155}, - [558] = {.lex_state = 153}, + [558] = {.lex_state = 155}, [559] = {.lex_state = 155}, - [560] = {.lex_state = 153}, + [560] = {.lex_state = 155}, [561] = {.lex_state = 155}, - [562] = {.lex_state = 155}, - [563] = {.lex_state = 155}, + [562] = {.lex_state = 156}, + [563] = {.lex_state = 153}, [564] = {.lex_state = 155}, [565] = {.lex_state = 155}, [566] = {.lex_state = 155}, [567] = {.lex_state = 155}, - [568] = {.lex_state = 153}, - [569] = {.lex_state = 153}, + [568] = {.lex_state = 155}, + [569] = {.lex_state = 155}, [570] = {.lex_state = 155}, - [571] = {.lex_state = 155}, + [571] = {.lex_state = 153}, [572] = {.lex_state = 155}, [573] = {.lex_state = 155}, - [574] = {.lex_state = 153}, + [574] = {.lex_state = 155}, [575] = {.lex_state = 155}, [576] = {.lex_state = 155}, [577] = {.lex_state = 155}, @@ -5735,7 +5766,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [580] = {.lex_state = 155}, [581] = {.lex_state = 155}, [582] = {.lex_state = 155}, - [583] = {.lex_state = 155}, + [583] = {.lex_state = 153}, [584] = {.lex_state = 155}, [585] = {.lex_state = 155}, [586] = {.lex_state = 155}, @@ -5747,11 +5778,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [592] = {.lex_state = 155}, [593] = {.lex_state = 155}, [594] = {.lex_state = 155}, - [595] = {.lex_state = 153}, - [596] = {.lex_state = 153}, - [597] = {.lex_state = 153}, - [598] = {.lex_state = 153}, - [599] = {.lex_state = 153}, + [595] = {.lex_state = 155}, + [596] = {.lex_state = 155}, + [597] = {.lex_state = 156}, + [598] = {.lex_state = 155}, + [599] = {.lex_state = 156}, [600] = {.lex_state = 153}, [601] = {.lex_state = 153}, [602] = {.lex_state = 153}, @@ -5759,55 +5790,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [604] = {.lex_state = 153}, [605] = {.lex_state = 153}, [606] = {.lex_state = 153}, - [607] = {.lex_state = 156}, + [607] = {.lex_state = 153}, [608] = {.lex_state = 153}, [609] = {.lex_state = 153}, [610] = {.lex_state = 153}, - [611] = {.lex_state = 153}, - [612] = {.lex_state = 153}, - [613] = {.lex_state = 156}, + [611] = {.lex_state = 156}, + [612] = {.lex_state = 156}, + [613] = {.lex_state = 153}, [614] = {.lex_state = 153}, - [615] = {.lex_state = 155}, - [616] = {.lex_state = 156}, - [617] = {.lex_state = 155}, - [618] = {.lex_state = 156}, + [615] = {.lex_state = 153}, + [616] = {.lex_state = 153}, + [617] = {.lex_state = 153}, + [618] = {.lex_state = 153}, [619] = {.lex_state = 153}, - [620] = {.lex_state = 153}, - [621] = {.lex_state = 153}, + [620] = {.lex_state = 155}, + [621] = {.lex_state = 156}, [622] = {.lex_state = 153}, [623] = {.lex_state = 153}, [624] = {.lex_state = 155}, - [625] = {.lex_state = 155}, - [626] = {.lex_state = 153}, + [625] = {.lex_state = 153}, + [626] = {.lex_state = 155}, [627] = {.lex_state = 155}, [628] = {.lex_state = 153}, - [629] = {.lex_state = 153}, + [629] = {.lex_state = 155}, [630] = {.lex_state = 153}, [631] = {.lex_state = 153}, [632] = {.lex_state = 153}, - [633] = {.lex_state = 156}, + [633] = {.lex_state = 153}, [634] = {.lex_state = 153}, - [635] = {.lex_state = 153}, + [635] = {.lex_state = 156}, [636] = {.lex_state = 156}, [637] = {.lex_state = 156}, [638] = {.lex_state = 153}, - [639] = {.lex_state = 156}, + [639] = {.lex_state = 153}, [640] = {.lex_state = 156}, - [641] = {.lex_state = 153}, + [641] = {.lex_state = 156}, [642] = {.lex_state = 153}, - [643] = {.lex_state = 153}, - [644] = {.lex_state = 153}, + [643] = {.lex_state = 156}, + [644] = {.lex_state = 156}, [645] = {.lex_state = 153}, - [646] = {.lex_state = 156}, - [647] = {.lex_state = 156}, + [646] = {.lex_state = 153}, + [647] = {.lex_state = 153}, [648] = {.lex_state = 153}, - [649] = {.lex_state = 153}, - [650] = {.lex_state = 156}, + [649] = {.lex_state = 156}, + [650] = {.lex_state = 153}, [651] = {.lex_state = 153}, [652] = {.lex_state = 153}, [653] = {.lex_state = 153}, [654] = {.lex_state = 153}, - [655] = {.lex_state = 153}, + [655] = {.lex_state = 156}, [656] = {.lex_state = 153}, [657] = {.lex_state = 153}, [658] = {.lex_state = 153}, @@ -5834,356 +5865,361 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [679] = {.lex_state = 153}, [680] = {.lex_state = 153}, [681] = {.lex_state = 153}, - [682] = {.lex_state = 155}, - [683] = {.lex_state = 156, .external_lex_state = 4}, - [684] = {.lex_state = 156, .external_lex_state = 5}, - [685] = {.lex_state = 155}, - [686] = {.lex_state = 153, .external_lex_state = 6}, - [687] = {.lex_state = 10, .external_lex_state = 7}, - [688] = {.lex_state = 8, .external_lex_state = 8}, - [689] = {.lex_state = 0, .external_lex_state = 9}, - [690] = {.lex_state = 153, .external_lex_state = 10}, - [691] = {.lex_state = 10, .external_lex_state = 11}, - [692] = {.lex_state = 8, .external_lex_state = 8}, - [693] = {.lex_state = 27, .external_lex_state = 12}, - [694] = {.lex_state = 10, .external_lex_state = 7}, - [695] = {.lex_state = 153, .external_lex_state = 6}, - [696] = {.lex_state = 156, .external_lex_state = 5}, - [697] = {.lex_state = 27, .external_lex_state = 13}, - [698] = {.lex_state = 34, .external_lex_state = 14}, - [699] = {.lex_state = 36, .external_lex_state = 15}, - [700] = {.lex_state = 0, .external_lex_state = 9}, - [701] = {.lex_state = 153, .external_lex_state = 10}, - [702] = {.lex_state = 34, .external_lex_state = 16}, - [703] = {.lex_state = 10, .external_lex_state = 11}, - [704] = {.lex_state = 27, .external_lex_state = 12}, - [705] = {.lex_state = 34, .external_lex_state = 16}, - [706] = {.lex_state = 36, .external_lex_state = 17}, - [707] = {.lex_state = 36, .external_lex_state = 17}, - [708] = {.lex_state = 156, .external_lex_state = 4}, - [709] = {.lex_state = 27, .external_lex_state = 13}, - [710] = {.lex_state = 34, .external_lex_state = 14}, - [711] = {.lex_state = 36, .external_lex_state = 15}, - [712] = {.lex_state = 0, .external_lex_state = 9}, - [713] = {.lex_state = 153, .external_lex_state = 10}, - [714] = {.lex_state = 10, .external_lex_state = 11}, - [715] = {.lex_state = 27, .external_lex_state = 12}, - [716] = {.lex_state = 34, .external_lex_state = 16}, - [717] = {.lex_state = 36, .external_lex_state = 17}, - [718] = {.lex_state = 156, .external_lex_state = 4}, - [719] = {.lex_state = 36, .external_lex_state = 15}, - [720] = {.lex_state = 8, .external_lex_state = 8}, - [721] = {.lex_state = 156, .external_lex_state = 4}, - [722] = {.lex_state = 10, .external_lex_state = 7}, - [723] = {.lex_state = 36, .external_lex_state = 17}, - [724] = {.lex_state = 34, .external_lex_state = 16}, - [725] = {.lex_state = 27, .external_lex_state = 12}, - [726] = {.lex_state = 10, .external_lex_state = 11}, - [727] = {.lex_state = 153, .external_lex_state = 6}, - [728] = {.lex_state = 156, .external_lex_state = 4}, - [729] = {.lex_state = 36, .external_lex_state = 17}, - [730] = {.lex_state = 34, .external_lex_state = 16}, - [731] = {.lex_state = 27, .external_lex_state = 12}, - [732] = {.lex_state = 10, .external_lex_state = 11}, - [733] = {.lex_state = 153, .external_lex_state = 10}, - [734] = {.lex_state = 0, .external_lex_state = 9}, - [735] = {.lex_state = 36, .external_lex_state = 15}, - [736] = {.lex_state = 34, .external_lex_state = 14}, - [737] = {.lex_state = 27, .external_lex_state = 13}, - [738] = {.lex_state = 156, .external_lex_state = 5}, - [739] = {.lex_state = 153, .external_lex_state = 6}, - [740] = {.lex_state = 10, .external_lex_state = 7}, - [741] = {.lex_state = 8, .external_lex_state = 8}, - [742] = {.lex_state = 153, .external_lex_state = 10}, + [682] = {.lex_state = 153}, + [683] = {.lex_state = 153}, + [684] = {.lex_state = 153}, + [685] = {.lex_state = 153}, + [686] = {.lex_state = 153}, + [687] = {.lex_state = 155}, + [688] = {.lex_state = 156, .external_lex_state = 4}, + [689] = {.lex_state = 156, .external_lex_state = 5}, + [690] = {.lex_state = 155}, + [691] = {.lex_state = 153, .external_lex_state = 6}, + [692] = {.lex_state = 10, .external_lex_state = 7}, + [693] = {.lex_state = 8, .external_lex_state = 8}, + [694] = {.lex_state = 0, .external_lex_state = 9}, + [695] = {.lex_state = 153, .external_lex_state = 10}, + [696] = {.lex_state = 10, .external_lex_state = 11}, + [697] = {.lex_state = 8, .external_lex_state = 8}, + [698] = {.lex_state = 27, .external_lex_state = 12}, + [699] = {.lex_state = 10, .external_lex_state = 7}, + [700] = {.lex_state = 153, .external_lex_state = 6}, + [701] = {.lex_state = 156, .external_lex_state = 5}, + [702] = {.lex_state = 27, .external_lex_state = 13}, + [703] = {.lex_state = 34, .external_lex_state = 14}, + [704] = {.lex_state = 36, .external_lex_state = 15}, + [705] = {.lex_state = 0, .external_lex_state = 9}, + [706] = {.lex_state = 153, .external_lex_state = 10}, + [707] = {.lex_state = 34, .external_lex_state = 16}, + [708] = {.lex_state = 10, .external_lex_state = 11}, + [709] = {.lex_state = 27, .external_lex_state = 12}, + [710] = {.lex_state = 34, .external_lex_state = 16}, + [711] = {.lex_state = 36, .external_lex_state = 17}, + [712] = {.lex_state = 36, .external_lex_state = 17}, + [713] = {.lex_state = 156, .external_lex_state = 4}, + [714] = {.lex_state = 27, .external_lex_state = 13}, + [715] = {.lex_state = 34, .external_lex_state = 14}, + [716] = {.lex_state = 36, .external_lex_state = 15}, + [717] = {.lex_state = 0, .external_lex_state = 9}, + [718] = {.lex_state = 153, .external_lex_state = 10}, + [719] = {.lex_state = 10, .external_lex_state = 11}, + [720] = {.lex_state = 27, .external_lex_state = 12}, + [721] = {.lex_state = 34, .external_lex_state = 16}, + [722] = {.lex_state = 36, .external_lex_state = 17}, + [723] = {.lex_state = 156, .external_lex_state = 4}, + [724] = {.lex_state = 36, .external_lex_state = 15}, + [725] = {.lex_state = 8, .external_lex_state = 8}, + [726] = {.lex_state = 156, .external_lex_state = 4}, + [727] = {.lex_state = 10, .external_lex_state = 7}, + [728] = {.lex_state = 36, .external_lex_state = 17}, + [729] = {.lex_state = 34, .external_lex_state = 16}, + [730] = {.lex_state = 27, .external_lex_state = 12}, + [731] = {.lex_state = 10, .external_lex_state = 11}, + [732] = {.lex_state = 153, .external_lex_state = 6}, + [733] = {.lex_state = 156, .external_lex_state = 4}, + [734] = {.lex_state = 36, .external_lex_state = 17}, + [735] = {.lex_state = 34, .external_lex_state = 16}, + [736] = {.lex_state = 27, .external_lex_state = 12}, + [737] = {.lex_state = 10, .external_lex_state = 11}, + [738] = {.lex_state = 153, .external_lex_state = 10}, + [739] = {.lex_state = 0, .external_lex_state = 9}, + [740] = {.lex_state = 36, .external_lex_state = 15}, + [741] = {.lex_state = 34, .external_lex_state = 14}, + [742] = {.lex_state = 27, .external_lex_state = 13}, [743] = {.lex_state = 156, .external_lex_state = 5}, - [744] = {.lex_state = 0, .external_lex_state = 9}, - [745] = {.lex_state = 27, .external_lex_state = 13}, - [746] = {.lex_state = 36, .external_lex_state = 15}, - [747] = {.lex_state = 156, .external_lex_state = 4}, - [748] = {.lex_state = 34, .external_lex_state = 14}, - [749] = {.lex_state = 36, .external_lex_state = 17}, - [750] = {.lex_state = 34, .external_lex_state = 16}, - [751] = {.lex_state = 27, .external_lex_state = 12}, - [752] = {.lex_state = 10, .external_lex_state = 11}, - [753] = {.lex_state = 27, .external_lex_state = 13}, - [754] = {.lex_state = 153, .external_lex_state = 10}, - [755] = {.lex_state = 0, .external_lex_state = 9}, - [756] = {.lex_state = 36, .external_lex_state = 15}, - [757] = {.lex_state = 156, .external_lex_state = 5}, - [758] = {.lex_state = 153, .external_lex_state = 6}, - [759] = {.lex_state = 34, .external_lex_state = 14}, - [760] = {.lex_state = 27, .external_lex_state = 13}, - [761] = {.lex_state = 156, .external_lex_state = 5}, - [762] = {.lex_state = 10, .external_lex_state = 7}, - [763] = {.lex_state = 8, .external_lex_state = 8}, - [764] = {.lex_state = 153, .external_lex_state = 6}, - [765] = {.lex_state = 8, .external_lex_state = 8}, - [766] = {.lex_state = 10, .external_lex_state = 7}, - [767] = {.lex_state = 153, .external_lex_state = 6}, - [768] = {.lex_state = 156, .external_lex_state = 5}, - [769] = {.lex_state = 27, .external_lex_state = 13}, - [770] = {.lex_state = 34, .external_lex_state = 14}, - [771] = {.lex_state = 36, .external_lex_state = 15}, - [772] = {.lex_state = 0, .external_lex_state = 9}, - [773] = {.lex_state = 153, .external_lex_state = 10}, - [774] = {.lex_state = 10, .external_lex_state = 11}, - [775] = {.lex_state = 27, .external_lex_state = 12}, - [776] = {.lex_state = 34, .external_lex_state = 16}, - [777] = {.lex_state = 36, .external_lex_state = 17}, - [778] = {.lex_state = 156, .external_lex_state = 4}, - [779] = {.lex_state = 34, .external_lex_state = 14}, - [780] = {.lex_state = 8, .external_lex_state = 8}, - [781] = {.lex_state = 10, .external_lex_state = 7}, - [782] = {.lex_state = 156}, - [783] = {.lex_state = 156}, - [784] = {.lex_state = 0}, - [785] = {.lex_state = 0}, - [786] = {.lex_state = 0}, + [744] = {.lex_state = 153, .external_lex_state = 6}, + [745] = {.lex_state = 10, .external_lex_state = 7}, + [746] = {.lex_state = 8, .external_lex_state = 8}, + [747] = {.lex_state = 153, .external_lex_state = 10}, + [748] = {.lex_state = 156, .external_lex_state = 5}, + [749] = {.lex_state = 0, .external_lex_state = 9}, + [750] = {.lex_state = 27, .external_lex_state = 13}, + [751] = {.lex_state = 36, .external_lex_state = 15}, + [752] = {.lex_state = 156, .external_lex_state = 4}, + [753] = {.lex_state = 34, .external_lex_state = 14}, + [754] = {.lex_state = 36, .external_lex_state = 17}, + [755] = {.lex_state = 34, .external_lex_state = 16}, + [756] = {.lex_state = 27, .external_lex_state = 12}, + [757] = {.lex_state = 10, .external_lex_state = 11}, + [758] = {.lex_state = 27, .external_lex_state = 13}, + [759] = {.lex_state = 153, .external_lex_state = 10}, + [760] = {.lex_state = 0, .external_lex_state = 9}, + [761] = {.lex_state = 36, .external_lex_state = 15}, + [762] = {.lex_state = 156, .external_lex_state = 5}, + [763] = {.lex_state = 153, .external_lex_state = 6}, + [764] = {.lex_state = 34, .external_lex_state = 14}, + [765] = {.lex_state = 27, .external_lex_state = 13}, + [766] = {.lex_state = 156, .external_lex_state = 5}, + [767] = {.lex_state = 10, .external_lex_state = 7}, + [768] = {.lex_state = 8, .external_lex_state = 8}, + [769] = {.lex_state = 153, .external_lex_state = 6}, + [770] = {.lex_state = 8, .external_lex_state = 8}, + [771] = {.lex_state = 10, .external_lex_state = 7}, + [772] = {.lex_state = 153, .external_lex_state = 6}, + [773] = {.lex_state = 156, .external_lex_state = 5}, + [774] = {.lex_state = 27, .external_lex_state = 13}, + [775] = {.lex_state = 34, .external_lex_state = 14}, + [776] = {.lex_state = 36, .external_lex_state = 15}, + [777] = {.lex_state = 0, .external_lex_state = 9}, + [778] = {.lex_state = 153, .external_lex_state = 10}, + [779] = {.lex_state = 10, .external_lex_state = 11}, + [780] = {.lex_state = 27, .external_lex_state = 12}, + [781] = {.lex_state = 34, .external_lex_state = 16}, + [782] = {.lex_state = 36, .external_lex_state = 17}, + [783] = {.lex_state = 156, .external_lex_state = 4}, + [784] = {.lex_state = 34, .external_lex_state = 14}, + [785] = {.lex_state = 8, .external_lex_state = 8}, + [786] = {.lex_state = 10, .external_lex_state = 7}, [787] = {.lex_state = 156}, [788] = {.lex_state = 156}, - [789] = {.lex_state = 156}, + [789] = {.lex_state = 0}, [790] = {.lex_state = 0}, - [791] = {.lex_state = 156}, - [792] = {.lex_state = 0}, + [791] = {.lex_state = 0}, + [792] = {.lex_state = 156}, [793] = {.lex_state = 156}, [794] = {.lex_state = 156}, - [795] = {.lex_state = 156}, - [796] = {.lex_state = 153}, - [797] = {.lex_state = 156}, + [795] = {.lex_state = 0}, + [796] = {.lex_state = 156}, + [797] = {.lex_state = 0}, [798] = {.lex_state = 156}, [799] = {.lex_state = 156}, [800] = {.lex_state = 156}, - [801] = {.lex_state = 8, .external_lex_state = 8}, - [802] = {.lex_state = 153}, + [801] = {.lex_state = 153}, + [802] = {.lex_state = 156}, [803] = {.lex_state = 156}, - [804] = {.lex_state = 8, .external_lex_state = 8}, - [805] = {.lex_state = 10, .external_lex_state = 7}, + [804] = {.lex_state = 156}, + [805] = {.lex_state = 156}, [806] = {.lex_state = 8, .external_lex_state = 8}, - [807] = {.lex_state = 156}, - [808] = {.lex_state = 8, .external_lex_state = 8}, - [809] = {.lex_state = 10, .external_lex_state = 7}, + [807] = {.lex_state = 153}, + [808] = {.lex_state = 156}, + [809] = {.lex_state = 8, .external_lex_state = 8}, [810] = {.lex_state = 10, .external_lex_state = 7}, [811] = {.lex_state = 8, .external_lex_state = 8}, - [812] = {.lex_state = 10, .external_lex_state = 7}, - [813] = {.lex_state = 156}, + [812] = {.lex_state = 156}, + [813] = {.lex_state = 8, .external_lex_state = 8}, [814] = {.lex_state = 10, .external_lex_state = 7}, - [815] = {.lex_state = 8, .external_lex_state = 8}, - [816] = {.lex_state = 10, .external_lex_state = 7}, - [817] = {.lex_state = 8, .external_lex_state = 8}, - [818] = {.lex_state = 10, .external_lex_state = 7}, - [819] = {.lex_state = 8, .external_lex_state = 8}, + [815] = {.lex_state = 10, .external_lex_state = 7}, + [816] = {.lex_state = 8, .external_lex_state = 8}, + [817] = {.lex_state = 10, .external_lex_state = 7}, + [818] = {.lex_state = 156}, + [819] = {.lex_state = 10, .external_lex_state = 7}, [820] = {.lex_state = 8, .external_lex_state = 8}, [821] = {.lex_state = 10, .external_lex_state = 7}, [822] = {.lex_state = 8, .external_lex_state = 8}, [823] = {.lex_state = 10, .external_lex_state = 7}, - [824] = {.lex_state = 10, .external_lex_state = 7}, + [824] = {.lex_state = 8, .external_lex_state = 8}, [825] = {.lex_state = 8, .external_lex_state = 8}, [826] = {.lex_state = 10, .external_lex_state = 7}, - [827] = {.lex_state = 36, .external_lex_state = 15}, - [828] = {.lex_state = 34, .external_lex_state = 14}, - [829] = {.lex_state = 0}, - [830] = {.lex_state = 36, .external_lex_state = 17}, - [831] = {.lex_state = 34, .external_lex_state = 16}, - [832] = {.lex_state = 27, .external_lex_state = 12}, - [833] = {.lex_state = 153, .external_lex_state = 10}, - [834] = {.lex_state = 153, .external_lex_state = 10}, - [835] = {.lex_state = 34, .external_lex_state = 16}, - [836] = {.lex_state = 0, .external_lex_state = 9}, - [837] = {.lex_state = 34, .external_lex_state = 16}, - [838] = {.lex_state = 156, .external_lex_state = 4}, - [839] = {.lex_state = 0, .external_lex_state = 9}, - [840] = {.lex_state = 10, .external_lex_state = 11}, - [841] = {.lex_state = 27, .external_lex_state = 12}, - [842] = {.lex_state = 27, .external_lex_state = 12}, - [843] = {.lex_state = 36, .external_lex_state = 17}, - [844] = {.lex_state = 10, .external_lex_state = 11}, + [827] = {.lex_state = 8, .external_lex_state = 8}, + [828] = {.lex_state = 10, .external_lex_state = 7}, + [829] = {.lex_state = 10, .external_lex_state = 7}, + [830] = {.lex_state = 8, .external_lex_state = 8}, + [831] = {.lex_state = 10, .external_lex_state = 7}, + [832] = {.lex_state = 36, .external_lex_state = 15}, + [833] = {.lex_state = 34, .external_lex_state = 14}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 36, .external_lex_state = 17}, + [836] = {.lex_state = 34, .external_lex_state = 16}, + [837] = {.lex_state = 27, .external_lex_state = 12}, + [838] = {.lex_state = 153, .external_lex_state = 10}, + [839] = {.lex_state = 153, .external_lex_state = 10}, + [840] = {.lex_state = 34, .external_lex_state = 16}, + [841] = {.lex_state = 0, .external_lex_state = 9}, + [842] = {.lex_state = 34, .external_lex_state = 16}, + [843] = {.lex_state = 156, .external_lex_state = 4}, + [844] = {.lex_state = 0, .external_lex_state = 9}, [845] = {.lex_state = 10, .external_lex_state = 11}, - [846] = {.lex_state = 36, .external_lex_state = 17}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 153, .external_lex_state = 6}, - [849] = {.lex_state = 153, .external_lex_state = 10}, - [850] = {.lex_state = 8, .external_lex_state = 8}, - [851] = {.lex_state = 0, .external_lex_state = 9}, - [852] = {.lex_state = 10, .external_lex_state = 7}, - [853] = {.lex_state = 153}, - [854] = {.lex_state = 156}, - [855] = {.lex_state = 36, .external_lex_state = 15}, - [856] = {.lex_state = 34, .external_lex_state = 14}, - [857] = {.lex_state = 27, .external_lex_state = 13}, - [858] = {.lex_state = 0}, - [859] = {.lex_state = 156, .external_lex_state = 5}, + [846] = {.lex_state = 27, .external_lex_state = 12}, + [847] = {.lex_state = 27, .external_lex_state = 12}, + [848] = {.lex_state = 36, .external_lex_state = 17}, + [849] = {.lex_state = 10, .external_lex_state = 11}, + [850] = {.lex_state = 10, .external_lex_state = 11}, + [851] = {.lex_state = 36, .external_lex_state = 17}, + [852] = {.lex_state = 0}, + [853] = {.lex_state = 153, .external_lex_state = 6}, + [854] = {.lex_state = 153, .external_lex_state = 10}, + [855] = {.lex_state = 8, .external_lex_state = 8}, + [856] = {.lex_state = 0, .external_lex_state = 9}, + [857] = {.lex_state = 10, .external_lex_state = 7}, + [858] = {.lex_state = 153}, + [859] = {.lex_state = 156}, [860] = {.lex_state = 36, .external_lex_state = 15}, - [861] = {.lex_state = 153, .external_lex_state = 6}, - [862] = {.lex_state = 0}, - [863] = {.lex_state = 156, .external_lex_state = 4}, - [864] = {.lex_state = 10, .external_lex_state = 7}, - [865] = {.lex_state = 8, .external_lex_state = 8}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 27, .external_lex_state = 13}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 156, .external_lex_state = 5}, - [870] = {.lex_state = 153, .external_lex_state = 6}, - [871] = {.lex_state = 8, .external_lex_state = 8}, - [872] = {.lex_state = 10, .external_lex_state = 7}, - [873] = {.lex_state = 27, .external_lex_state = 13}, - [874] = {.lex_state = 153}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 156, .external_lex_state = 4}, - [877] = {.lex_state = 156, .external_lex_state = 5}, - [878] = {.lex_state = 34, .external_lex_state = 14}, - [879] = {.lex_state = 8}, + [861] = {.lex_state = 34, .external_lex_state = 14}, + [862] = {.lex_state = 27, .external_lex_state = 13}, + [863] = {.lex_state = 0}, + [864] = {.lex_state = 156, .external_lex_state = 5}, + [865] = {.lex_state = 36, .external_lex_state = 15}, + [866] = {.lex_state = 153, .external_lex_state = 6}, + [867] = {.lex_state = 0}, + [868] = {.lex_state = 156, .external_lex_state = 4}, + [869] = {.lex_state = 10, .external_lex_state = 7}, + [870] = {.lex_state = 8, .external_lex_state = 8}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 27, .external_lex_state = 13}, + [873] = {.lex_state = 0}, + [874] = {.lex_state = 156, .external_lex_state = 5}, + [875] = {.lex_state = 153, .external_lex_state = 6}, + [876] = {.lex_state = 8, .external_lex_state = 8}, + [877] = {.lex_state = 10, .external_lex_state = 7}, + [878] = {.lex_state = 27, .external_lex_state = 13}, + [879] = {.lex_state = 153}, [880] = {.lex_state = 0}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 8}, - [883] = {.lex_state = 8}, + [881] = {.lex_state = 156, .external_lex_state = 4}, + [882] = {.lex_state = 156, .external_lex_state = 5}, + [883] = {.lex_state = 34, .external_lex_state = 14}, [884] = {.lex_state = 8}, [885] = {.lex_state = 0}, [886] = {.lex_state = 0}, - [887] = {.lex_state = 156}, - [888] = {.lex_state = 0}, - [889] = {.lex_state = 156}, + [887] = {.lex_state = 8}, + [888] = {.lex_state = 8}, + [889] = {.lex_state = 8}, [890] = {.lex_state = 0}, [891] = {.lex_state = 0}, - [892] = {.lex_state = 8, .external_lex_state = 8}, - [893] = {.lex_state = 10, .external_lex_state = 7}, - [894] = {.lex_state = 0}, + [892] = {.lex_state = 156}, + [893] = {.lex_state = 0}, + [894] = {.lex_state = 156}, [895] = {.lex_state = 0}, [896] = {.lex_state = 0}, - [897] = {.lex_state = 156}, - [898] = {.lex_state = 0}, + [897] = {.lex_state = 8, .external_lex_state = 8}, + [898] = {.lex_state = 10, .external_lex_state = 7}, [899] = {.lex_state = 0}, - [900] = {.lex_state = 153}, + [900] = {.lex_state = 0}, [901] = {.lex_state = 0}, - [902] = {.lex_state = 0}, + [902] = {.lex_state = 156}, [903] = {.lex_state = 0}, - [904] = {.lex_state = 8}, - [905] = {.lex_state = 8}, + [904] = {.lex_state = 0}, + [905] = {.lex_state = 153}, [906] = {.lex_state = 0}, [907] = {.lex_state = 0}, - [908] = {.lex_state = 0, .external_lex_state = 3}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 0}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 8}, + [910] = {.lex_state = 8}, [911] = {.lex_state = 0}, [912] = {.lex_state = 0}, - [913] = {.lex_state = 156}, - [914] = {.lex_state = 156}, - [915] = {.lex_state = 156}, - [916] = {.lex_state = 8}, + [913] = {.lex_state = 0, .external_lex_state = 3}, + [914] = {.lex_state = 0}, + [915] = {.lex_state = 0}, + [916] = {.lex_state = 0}, [917] = {.lex_state = 0}, - [918] = {.lex_state = 0}, - [919] = {.lex_state = 0, .external_lex_state = 3}, - [920] = {.lex_state = 8}, - [921] = {.lex_state = 0}, + [918] = {.lex_state = 156}, + [919] = {.lex_state = 156}, + [920] = {.lex_state = 156}, + [921] = {.lex_state = 8}, [922] = {.lex_state = 0}, - [923] = {.lex_state = 8}, - [924] = {.lex_state = 0}, - [925] = {.lex_state = 0}, + [923] = {.lex_state = 0}, + [924] = {.lex_state = 0, .external_lex_state = 3}, + [925] = {.lex_state = 8}, [926] = {.lex_state = 0}, [927] = {.lex_state = 0}, - [928] = {.lex_state = 156}, - [929] = {.lex_state = 0, .external_lex_state = 3}, + [928] = {.lex_state = 8}, + [929] = {.lex_state = 0}, [930] = {.lex_state = 0}, - [931] = {.lex_state = 153}, - [932] = {.lex_state = 153}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 153}, - [935] = {.lex_state = 153}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 156}, - [938] = {.lex_state = 156}, + [931] = {.lex_state = 0}, + [932] = {.lex_state = 0}, + [933] = {.lex_state = 156}, + [934] = {.lex_state = 0, .external_lex_state = 3}, + [935] = {.lex_state = 0}, + [936] = {.lex_state = 153}, + [937] = {.lex_state = 153}, + [938] = {.lex_state = 0}, [939] = {.lex_state = 153}, [940] = {.lex_state = 153}, - [941] = {.lex_state = 1}, - [942] = {.lex_state = 153}, - [943] = {.lex_state = 1}, - [944] = {.lex_state = 1}, + [941] = {.lex_state = 0}, + [942] = {.lex_state = 156}, + [943] = {.lex_state = 156}, + [944] = {.lex_state = 153}, [945] = {.lex_state = 153}, - [946] = {.lex_state = 0}, + [946] = {.lex_state = 1}, [947] = {.lex_state = 153}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 153}, - [950] = {.lex_state = 0}, + [948] = {.lex_state = 1}, + [949] = {.lex_state = 1}, + [950] = {.lex_state = 153}, [951] = {.lex_state = 0}, [952] = {.lex_state = 153}, - [953] = {.lex_state = 153}, - [954] = {.lex_state = 0}, - [955] = {.lex_state = 156}, - [956] = {.lex_state = 153}, + [953] = {.lex_state = 0}, + [954] = {.lex_state = 153}, + [955] = {.lex_state = 0}, + [956] = {.lex_state = 0}, [957] = {.lex_state = 153}, [958] = {.lex_state = 153}, [959] = {.lex_state = 0}, - [960] = {.lex_state = 165}, + [960] = {.lex_state = 156}, [961] = {.lex_state = 153}, - [962] = {.lex_state = 0}, + [962] = {.lex_state = 153}, [963] = {.lex_state = 153}, [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 0}, + [965] = {.lex_state = 165}, + [966] = {.lex_state = 153}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 0}, + [968] = {.lex_state = 153}, [969] = {.lex_state = 0}, [970] = {.lex_state = 0}, [971] = {.lex_state = 0}, [972] = {.lex_state = 0}, [973] = {.lex_state = 0}, - [974] = {.lex_state = 153}, + [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, [976] = {.lex_state = 0}, [977] = {.lex_state = 0}, [978] = {.lex_state = 0}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 153}, - [981] = {.lex_state = 153}, + [979] = {.lex_state = 153}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, [983] = {.lex_state = 0}, [984] = {.lex_state = 0}, - [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, + [985] = {.lex_state = 153}, + [986] = {.lex_state = 153}, [987] = {.lex_state = 0}, [988] = {.lex_state = 0}, - [989] = {.lex_state = 153}, - [990] = {.lex_state = 153}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 0}, [991] = {.lex_state = 0}, - [992] = {.lex_state = 165}, + [992] = {.lex_state = 0}, [993] = {.lex_state = 0}, - [994] = {.lex_state = 0}, + [994] = {.lex_state = 153}, [995] = {.lex_state = 153}, [996] = {.lex_state = 0}, - [997] = {.lex_state = 0}, + [997] = {.lex_state = 165}, [998] = {.lex_state = 0}, - [999] = {.lex_state = 153}, - [1000] = {.lex_state = 0}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 153}, [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 0}, + [1004] = {.lex_state = 153}, [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 153}, + [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 153}, + [1009] = {.lex_state = 0}, [1010] = {.lex_state = 0}, [1011] = {.lex_state = 153}, - [1012] = {.lex_state = 153}, + [1012] = {.lex_state = 0}, [1013] = {.lex_state = 0}, [1014] = {.lex_state = 153}, [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0}, + [1016] = {.lex_state = 153}, [1017] = {.lex_state = 153}, [1018] = {.lex_state = 0}, [1019] = {.lex_state = 153}, - [1020] = {.lex_state = 153}, - [1021] = {.lex_state = 153}, - [1022] = {.lex_state = 0}, + [1020] = {.lex_state = 0}, + [1021] = {.lex_state = 0}, + [1022] = {.lex_state = 153}, [1023] = {.lex_state = 0}, [1024] = {.lex_state = 153}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, + [1025] = {.lex_state = 153}, + [1026] = {.lex_state = 153}, [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 0}, - [1030] = {(TSStateId)(-1)}, - [1031] = {(TSStateId)(-1)}, + [1029] = {.lex_state = 153}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 0}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 0}, + [1034] = {.lex_state = 0}, + [1035] = {(TSStateId)(-1)}, + [1036] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6235,6 +6271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hidden] = ACTIONS(1), [anon_sym_fixed] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), + [sym_delete] = ACTIONS(1), [sym_thisExpr] = ACTIONS(1), [sym_outerExpr] = ACTIONS(1), [sym_nullLiteral] = ACTIONS(1), @@ -6320,27 +6357,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_argument_paren] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(1001), + [sym_module] = STATE(1006), [sym_shebangComment] = STATE(1), - [sym_moduleHeader] = STATE(339), - [sym_moduleClause] = STATE(542), - [sym_extendsOrAmendsClause] = STATE(639), - [sym_importClause] = STATE(637), - [sym_importGlobClause] = STATE(637), - [sym__moduleMember] = STATE(671), - [sym_clazz] = STATE(658), - [sym_typeAlias] = STATE(658), - [sym_classProperty] = STATE(658), - [sym_classMethod] = STATE(658), - [sym_methodHeader] = STATE(635), - [sym_annotation] = STATE(656), - [sym_modifier] = STATE(676), + [sym_moduleHeader] = STATE(352), + [sym_moduleClause] = STATE(540), + [sym_extendsOrAmendsClause] = STATE(641), + [sym_importClause] = STATE(649), + [sym_importGlobClause] = STATE(649), + [sym__moduleMember] = STATE(669), + [sym_clazz] = STATE(663), + [sym_typeAlias] = STATE(663), + [sym_classProperty] = STATE(663), + [sym_classMethod] = STATE(663), + [sym_methodHeader] = STATE(652), + [sym_annotation] = STATE(659), + [sym_modifier] = STATE(681), [sym_lineComment] = STATE(1), - [sym_docComment] = STATE(510), - [aux_sym_module_repeat1] = STATE(340), - [aux_sym_module_repeat2] = STATE(409), - [aux_sym_moduleHeader_repeat1] = STATE(512), - [aux_sym_moduleClause_repeat1] = STATE(669), + [sym_docComment] = STATE(516), + [aux_sym_module_repeat1] = STATE(348), + [aux_sym_module_repeat2] = STATE(406), + [aux_sym_moduleHeader_repeat1] = STATE(515), + [aux_sym_moduleClause_repeat1] = STATE(664), [ts_builtin_sym_end] = ACTIONS(11), [sym_identifier] = ACTIONS(13), [anon_sym_POUND_BANG] = ACTIONS(15), @@ -6367,51 +6404,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2] = { [sym_shebangComment] = STATE(2), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_objectBodyParameters] = STATE(11), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_objectBodyParameters] = STATE(12), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_typedIdentifier] = STATE(926), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_typedIdentifier] = STATE(931), [sym_lineComment] = STATE(2), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(10), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(18), [sym_identifier] = ACTIONS(37), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -6471,51 +6508,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [3] = { [sym_shebangComment] = STATE(3), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_objectBodyParameters] = STATE(14), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_objectBodyParameters] = STATE(20), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_typedIdentifier] = STATE(926), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_typedIdentifier] = STATE(931), [sym_lineComment] = STATE(3), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(13), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(22), [sym_identifier] = ACTIONS(37), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -6575,51 +6612,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [4] = { [sym_shebangComment] = STATE(4), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_objectBodyParameters] = STATE(19), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_objectBodyParameters] = STATE(16), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_typedIdentifier] = STATE(926), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_typedIdentifier] = STATE(931), [sym_lineComment] = STATE(4), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(15), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(17), [sym_identifier] = ACTIONS(37), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -6679,51 +6716,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5] = { [sym_shebangComment] = STATE(5), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_objectBodyParameters] = STATE(21), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_objectBodyParameters] = STATE(15), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_typedIdentifier] = STATE(926), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_typedIdentifier] = STATE(931), [sym_lineComment] = STATE(5), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(12), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(14), [sym_identifier] = ACTIONS(37), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -6783,51 +6820,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [6] = { [sym_shebangComment] = STATE(6), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_objectBodyParameters] = STATE(22), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_objectBodyParameters] = STATE(11), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_typedIdentifier] = STATE(926), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_typedIdentifier] = STATE(931), [sym_lineComment] = STATE(6), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(18), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(10), [sym_identifier] = ACTIONS(37), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -6887,49 +6924,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [7] = { [sym_shebangComment] = STATE(7), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(7), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -6989,49 +7026,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [8] = { [sym_shebangComment] = STATE(8), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(8), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -7091,49 +7128,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [9] = { [sym_shebangComment] = STATE(9), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(9), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -7193,49 +7230,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [10] = { [sym_shebangComment] = STATE(10), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(10), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -7295,48 +7332,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [11] = { [sym_shebangComment] = STATE(11), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(11), - [aux_sym_moduleClause_repeat1] = STATE(678), + [aux_sym_moduleClause_repeat1] = STATE(686), [aux_sym_objectBody_repeat1] = STATE(9), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -7397,49 +7434,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [12] = { [sym_shebangComment] = STATE(12), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(12), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(19), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -7499,49 +7536,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [13] = { [sym_shebangComment] = STATE(13), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(13), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -7601,55 +7638,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [14] = { [sym_shebangComment] = STATE(14), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(14), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(8), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(139), [anon_sym_function] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACK_LBRACK] = ACTIONS(51), @@ -7703,49 +7740,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [15] = { [sym_shebangComment] = STATE(15), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(15), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(7), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -7805,49 +7842,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [16] = { [sym_shebangComment] = STATE(16), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(16), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(13), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -7907,361 +7944,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [17] = { [sym_shebangComment] = STATE(17), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(17), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(143), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(146), - [anon_sym_import] = ACTIONS(149), - [anon_sym_import_STAR] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACK_LBRACK] = ACTIONS(163), - [anon_sym_for] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(169), - [anon_sym_when] = ACTIONS(172), - [anon_sym_DOT_DOT_DOT] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(178), - [anon_sym_external] = ACTIONS(181), - [anon_sym_abstract] = ACTIONS(181), - [anon_sym_open] = ACTIONS(181), - [anon_sym_local] = ACTIONS(181), - [anon_sym_hidden] = ACTIONS(181), - [anon_sym_fixed] = ACTIONS(181), - [anon_sym_const] = ACTIONS(181), - [sym_thisExpr] = ACTIONS(184), - [sym_outerExpr] = ACTIONS(184), - [sym_nullLiteral] = ACTIONS(184), - [sym_trueLiteral] = ACTIONS(184), - [sym_falseLiteral] = ACTIONS(184), - [sym_intLiteral] = ACTIONS(184), - [sym_floatLiteral] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(190), - [anon_sym_POUND_DQUOTE] = ACTIONS(193), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(196), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(199), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(202), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(205), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(208), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(211), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(214), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(217), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(220), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(223), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(226), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), - [anon_sym_new] = ACTIONS(232), - [anon_sym_super] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(238), - [anon_sym_BANG] = ACTIONS(241), - [anon_sym_if] = ACTIONS(244), - [anon_sym_let] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(250), - [anon_sym_trace] = ACTIONS(253), - [anon_sym_read] = ACTIONS(256), - [anon_sym_read_QMARK] = ACTIONS(259), - [anon_sym_read_STAR] = ACTIONS(262), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [18] = { - [sym_shebangComment] = STATE(18), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(18), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(125), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_function] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACK_LBRACK] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_DOT_DOT_DOT] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(61), - [anon_sym_external] = ACTIONS(33), - [anon_sym_abstract] = ACTIONS(33), - [anon_sym_open] = ACTIONS(33), - [anon_sym_local] = ACTIONS(33), - [anon_sym_hidden] = ACTIONS(33), - [anon_sym_fixed] = ACTIONS(33), - [anon_sym_const] = ACTIONS(33), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteral] = ACTIONS(63), - [sym_trueLiteral] = ACTIONS(63), - [sym_falseLiteral] = ACTIONS(63), - [sym_intLiteral] = ACTIONS(63), - [sym_floatLiteral] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [19] = { - [sym_shebangComment] = STATE(19), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(19), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(20), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(139), - [anon_sym_function] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACK_LBRACK] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_DOT_DOT_DOT] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(61), - [anon_sym_external] = ACTIONS(33), - [anon_sym_abstract] = ACTIONS(33), - [anon_sym_open] = ACTIONS(33), - [anon_sym_local] = ACTIONS(33), - [anon_sym_hidden] = ACTIONS(33), - [anon_sym_fixed] = ACTIONS(33), - [anon_sym_const] = ACTIONS(33), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteral] = ACTIONS(63), - [sym_trueLiteral] = ACTIONS(63), - [sym_falseLiteral] = ACTIONS(63), - [sym_intLiteral] = ACTIONS(63), - [sym_floatLiteral] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [20] = { - [sym_shebangComment] = STATE(20), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(20), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(125), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_RBRACE] = ACTIONS(141), [anon_sym_function] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACK_LBRACK] = ACTIONS(51), @@ -8313,51 +8044,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [21] = { - [sym_shebangComment] = STATE(21), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [18] = { + [sym_shebangComment] = STATE(18), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(21), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(16), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(18), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -8415,57 +8146,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, + [19] = { + [sym_shebangComment] = STATE(19), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(79), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(102), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(19), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(125), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(143), + [anon_sym_function] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACK_LBRACK] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_DOT_DOT_DOT] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(61), + [anon_sym_external] = ACTIONS(33), + [anon_sym_abstract] = ACTIONS(33), + [anon_sym_open] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_hidden] = ACTIONS(33), + [anon_sym_fixed] = ACTIONS(33), + [anon_sym_const] = ACTIONS(33), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteral] = ACTIONS(63), + [sym_trueLiteral] = ACTIONS(63), + [sym_falseLiteral] = ACTIONS(63), + [sym_intLiteral] = ACTIONS(63), + [sym_floatLiteral] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_super] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [20] = { + [sym_shebangComment] = STATE(20), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(79), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(102), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(20), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(125), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(145), + [anon_sym_function] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACK_LBRACK] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_DOT_DOT_DOT] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(61), + [anon_sym_external] = ACTIONS(33), + [anon_sym_abstract] = ACTIONS(33), + [anon_sym_open] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_hidden] = ACTIONS(33), + [anon_sym_fixed] = ACTIONS(33), + [anon_sym_const] = ACTIONS(33), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteral] = ACTIONS(63), + [sym_trueLiteral] = ACTIONS(63), + [sym_falseLiteral] = ACTIONS(63), + [sym_intLiteral] = ACTIONS(63), + [sym_floatLiteral] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_super] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [21] = { + [sym_shebangComment] = STATE(21), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(79), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(102), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(21), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(147), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(150), + [anon_sym_import] = ACTIONS(153), + [anon_sym_import_STAR] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(164), + [anon_sym_LBRACK_LBRACK] = ACTIONS(167), + [anon_sym_for] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(173), + [anon_sym_when] = ACTIONS(176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(182), + [anon_sym_external] = ACTIONS(185), + [anon_sym_abstract] = ACTIONS(185), + [anon_sym_open] = ACTIONS(185), + [anon_sym_local] = ACTIONS(185), + [anon_sym_hidden] = ACTIONS(185), + [anon_sym_fixed] = ACTIONS(185), + [anon_sym_const] = ACTIONS(185), + [sym_thisExpr] = ACTIONS(188), + [sym_outerExpr] = ACTIONS(188), + [sym_nullLiteral] = ACTIONS(188), + [sym_trueLiteral] = ACTIONS(188), + [sym_falseLiteral] = ACTIONS(188), + [sym_intLiteral] = ACTIONS(188), + [sym_floatLiteral] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(194), + [anon_sym_POUND_DQUOTE] = ACTIONS(197), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(200), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(203), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(206), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(209), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(212), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(215), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(218), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(224), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(230), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(233), + [anon_sym_new] = ACTIONS(236), + [anon_sym_super] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(242), + [anon_sym_BANG] = ACTIONS(245), + [anon_sym_if] = ACTIONS(248), + [anon_sym_let] = ACTIONS(251), + [anon_sym_throw] = ACTIONS(254), + [anon_sym_trace] = ACTIONS(257), + [anon_sym_read] = ACTIONS(260), + [anon_sym_read_QMARK] = ACTIONS(263), + [anon_sym_read_STAR] = ACTIONS(266), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, [22] = { [sym_shebangComment] = STATE(22), - [sym_methodHeader] = STATE(968), - [sym__objectMember] = STATE(252), - [sym_objectProperty] = STATE(256), - [sym_objectMethod] = STATE(256), - [sym_objectEntry] = STATE(256), - [sym_objectElement] = STATE(256), - [sym_objectPredicate] = STATE(256), - [sym_forGenerator] = STATE(256), - [sym_whenGenerator] = STATE(256), - [sym_objectSpread] = STATE(256), - [sym_parameterList] = STATE(996), - [sym_modifier] = STATE(676), - [sym__expr] = STATE(509), - [sym_variableObjectLiteral] = STATE(60), + [sym_methodHeader] = STATE(973), + [sym__objectMember] = STATE(263), + [sym_objectProperty] = STATE(254), + [sym_objectMethod] = STATE(254), + [sym_objectEntry] = STATE(254), + [sym_objectElement] = STATE(254), + [sym_objectPredicate] = STATE(254), + [sym_forGenerator] = STATE(254), + [sym_whenGenerator] = STATE(254), + [sym_objectSpread] = STATE(254), + [sym_parameterList] = STATE(1001), + [sym_modifier] = STATE(681), + [sym__expr] = STATE(514), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(79), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), [sym_variableExpr] = STATE(102), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(22), - [aux_sym_moduleClause_repeat1] = STATE(678), - [aux_sym_objectBody_repeat1] = STATE(7), + [aux_sym_moduleClause_repeat1] = STATE(686), + [aux_sym_objectBody_repeat1] = STATE(21), [sym_identifier] = ACTIONS(125), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(145), [anon_sym_function] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACK_LBRACK] = ACTIONS(51), @@ -8519,11 +8556,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [23] = { [sym_shebangComment] = STATE(23), - [sym_objectBody] = STATE(86), - [sym_typeAnnotation] = STATE(918), - [sym_argumentList] = STATE(50), + [sym_objectBody] = STATE(85), + [sym_typeAnnotation] = STATE(923), + [sym_argumentList] = STATE(60), [sym_lineComment] = STATE(23), - [aux_sym_classProperty_repeat1] = STATE(242), + [aux_sym_classProperty_repeat1] = STATE(243), [sym_identifier] = ACTIONS(269), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(269), @@ -8611,11 +8648,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [24] = { [sym_shebangComment] = STATE(24), - [sym_objectBody] = STATE(86), - [sym_typeAnnotation] = STATE(976), - [sym_argumentList] = STATE(50), [sym_lineComment] = STATE(24), - [aux_sym_classProperty_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(283), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(283), + [anon_sym_import] = ACTIONS(283), + [anon_sym_as] = ACTIONS(283), + [anon_sym_import_STAR] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_function] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(283), + [anon_sym_RBRACK] = ACTIONS(285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(285), + [anon_sym_for] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(285), + [anon_sym_when] = ACTIONS(283), + [anon_sym_else] = ACTIONS(283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(283), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(285), + [anon_sym_DASH_GT] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(283), + [anon_sym_PIPE] = ACTIONS(283), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_LT] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(283), + [anon_sym_external] = ACTIONS(283), + [anon_sym_abstract] = ACTIONS(283), + [anon_sym_open] = ACTIONS(283), + [anon_sym_local] = ACTIONS(283), + [anon_sym_hidden] = ACTIONS(283), + [anon_sym_fixed] = ACTIONS(283), + [anon_sym_const] = ACTIONS(283), + [sym_thisExpr] = ACTIONS(283), + [sym_outerExpr] = ACTIONS(283), + [sym_nullLiteral] = ACTIONS(283), + [sym_trueLiteral] = ACTIONS(283), + [sym_falseLiteral] = ACTIONS(283), + [sym_intLiteral] = ACTIONS(283), + [sym_floatLiteral] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_POUND_DQUOTE] = ACTIONS(283), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(283), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(283), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(283), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(283), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(285), + [anon_sym_new] = ACTIONS(283), + [anon_sym_super] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(283), + [anon_sym_QMARK_DOT] = ACTIONS(285), + [anon_sym_BANG_BANG] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(283), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_QMARK_QMARK] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_TILDE_SLASH] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_is] = ACTIONS(283), + [anon_sym_if] = ACTIONS(283), + [anon_sym_let] = ACTIONS(283), + [anon_sym_throw] = ACTIONS(283), + [anon_sym_trace] = ACTIONS(283), + [anon_sym_read] = ACTIONS(283), + [anon_sym_read_QMARK] = ACTIONS(285), + [anon_sym_read_STAR] = ACTIONS(285), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(285), + }, + [25] = { + [sym_shebangComment] = STATE(25), + [sym_lineComment] = STATE(25), + [aux_sym_qualifiedIdentifier_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(289), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(289), + [anon_sym_import] = ACTIONS(289), + [anon_sym_as] = ACTIONS(289), + [anon_sym_import_STAR] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_function] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(289), + [anon_sym_RBRACK] = ACTIONS(291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(291), + [anon_sym_for] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(291), + [anon_sym_when] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_external] = ACTIONS(289), + [anon_sym_abstract] = ACTIONS(289), + [anon_sym_open] = ACTIONS(289), + [anon_sym_local] = ACTIONS(289), + [anon_sym_hidden] = ACTIONS(289), + [anon_sym_fixed] = ACTIONS(289), + [anon_sym_const] = ACTIONS(289), + [sym_thisExpr] = ACTIONS(289), + [sym_outerExpr] = ACTIONS(289), + [sym_nullLiteral] = ACTIONS(289), + [sym_trueLiteral] = ACTIONS(289), + [sym_falseLiteral] = ACTIONS(289), + [sym_intLiteral] = ACTIONS(289), + [sym_floatLiteral] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_POUND_DQUOTE] = ACTIONS(289), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(289), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(289), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(289), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(289), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), + [anon_sym_new] = ACTIONS(289), + [anon_sym_super] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_BANG_BANG] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_STAR_STAR] = ACTIONS(291), + [anon_sym_QMARK_QMARK] = ACTIONS(291), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_TILDE_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_LT_EQ] = ACTIONS(291), + [anon_sym_GT_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_PIPE_GT] = ACTIONS(291), + [anon_sym_is] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_throw] = ACTIONS(289), + [anon_sym_trace] = ACTIONS(289), + [anon_sym_read] = ACTIONS(289), + [anon_sym_read_QMARK] = ACTIONS(291), + [anon_sym_read_STAR] = ACTIONS(291), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(291), + }, + [26] = { + [sym_shebangComment] = STATE(26), + [sym_objectBody] = STATE(85), + [sym_typeAnnotation] = STATE(981), + [sym_argumentList] = STATE(60), + [sym_lineComment] = STATE(26), + [aux_sym_classProperty_repeat1] = STATE(243), [sym_identifier] = ACTIONS(269), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(269), @@ -8633,7 +8850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(269), [anon_sym_DOT_DOT_DOT] = ACTIONS(269), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(283), + [anon_sym_COLON] = ACTIONS(296), [anon_sym_STAR] = ACTIONS(269), [anon_sym_LT] = ACTIONS(269), [anon_sym_GT] = ACTIONS(269), @@ -8699,190 +8916,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_subscript_bracket] = ACTIONS(271), [sym__open_argument_paren] = ACTIONS(281), }, - [25] = { - [sym_shebangComment] = STATE(25), - [sym_lineComment] = STATE(25), - [aux_sym_qualifiedIdentifier_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(285), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(285), - [anon_sym_import] = ACTIONS(285), - [anon_sym_as] = ACTIONS(285), - [anon_sym_import_STAR] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_RBRACE] = ACTIONS(287), - [anon_sym_function] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(285), - [anon_sym_RBRACK] = ACTIONS(287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(287), - [anon_sym_for] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(287), - [anon_sym_when] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_DOT_DOT_DOT] = ACTIONS(285), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_external] = ACTIONS(285), - [anon_sym_abstract] = ACTIONS(285), - [anon_sym_open] = ACTIONS(285), - [anon_sym_local] = ACTIONS(285), - [anon_sym_hidden] = ACTIONS(285), - [anon_sym_fixed] = ACTIONS(285), - [anon_sym_const] = ACTIONS(285), - [sym_thisExpr] = ACTIONS(285), - [sym_outerExpr] = ACTIONS(285), - [sym_nullLiteral] = ACTIONS(285), - [sym_trueLiteral] = ACTIONS(285), - [sym_falseLiteral] = ACTIONS(285), - [sym_intLiteral] = ACTIONS(285), - [sym_floatLiteral] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_POUND_DQUOTE] = ACTIONS(285), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(285), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(285), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(285), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(285), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(285), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), - [anon_sym_new] = ACTIONS(285), - [anon_sym_super] = ACTIONS(285), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_QMARK_DOT] = ACTIONS(287), - [anon_sym_BANG_BANG] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_QMARK_QMARK] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_TILDE_SLASH] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_LT_EQ] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(287), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_PIPE_GT] = ACTIONS(287), - [anon_sym_is] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_let] = ACTIONS(285), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_trace] = ACTIONS(285), - [anon_sym_read] = ACTIONS(285), - [anon_sym_read_QMARK] = ACTIONS(287), - [anon_sym_read_STAR] = ACTIONS(287), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(287), - }, - [26] = { - [sym_shebangComment] = STATE(26), - [sym_lineComment] = STATE(26), - [sym_identifier] = ACTIONS(292), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(292), - [anon_sym_import] = ACTIONS(292), - [anon_sym_as] = ACTIONS(292), - [anon_sym_import_STAR] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(294), - [anon_sym_RBRACE] = ACTIONS(294), - [anon_sym_function] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_RBRACK] = ACTIONS(294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(294), - [anon_sym_for] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_COMMA] = ACTIONS(294), - [anon_sym_RPAREN] = ACTIONS(294), - [anon_sym_when] = ACTIONS(292), - [anon_sym_else] = ACTIONS(292), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(294), - [anon_sym_DASH_GT] = ACTIONS(296), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_PIPE] = ACTIONS(292), - [anon_sym_STAR] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(292), - [anon_sym_GT] = ACTIONS(292), - [anon_sym_external] = ACTIONS(292), - [anon_sym_abstract] = ACTIONS(292), - [anon_sym_open] = ACTIONS(292), - [anon_sym_local] = ACTIONS(292), - [anon_sym_hidden] = ACTIONS(292), - [anon_sym_fixed] = ACTIONS(292), - [anon_sym_const] = ACTIONS(292), - [sym_thisExpr] = ACTIONS(292), - [sym_outerExpr] = ACTIONS(292), - [sym_nullLiteral] = ACTIONS(292), - [sym_trueLiteral] = ACTIONS(292), - [sym_falseLiteral] = ACTIONS(292), - [sym_intLiteral] = ACTIONS(292), - [sym_floatLiteral] = ACTIONS(294), - [anon_sym_DQUOTE] = ACTIONS(292), - [anon_sym_POUND_DQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(292), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(292), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(294), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(294), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(294), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(294), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(294), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(294), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(294), - [anon_sym_new] = ACTIONS(292), - [anon_sym_super] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(292), - [anon_sym_QMARK_DOT] = ACTIONS(294), - [anon_sym_BANG_BANG] = ACTIONS(294), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_STAR_STAR] = ACTIONS(294), - [anon_sym_QMARK_QMARK] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(292), - [anon_sym_TILDE_SLASH] = ACTIONS(294), - [anon_sym_PERCENT] = ACTIONS(294), - [anon_sym_PLUS] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(294), - [anon_sym_GT_EQ] = ACTIONS(294), - [anon_sym_EQ_EQ] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(294), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_PIPE_PIPE] = ACTIONS(294), - [anon_sym_PIPE_GT] = ACTIONS(294), - [anon_sym_is] = ACTIONS(292), - [anon_sym_if] = ACTIONS(292), - [anon_sym_let] = ACTIONS(292), - [anon_sym_throw] = ACTIONS(292), - [anon_sym_trace] = ACTIONS(292), - [anon_sym_read] = ACTIONS(292), - [anon_sym_read_QMARK] = ACTIONS(294), - [anon_sym_read_STAR] = ACTIONS(294), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(294), - }, [27] = { [sym_shebangComment] = STATE(27), [sym_lineComment] = STATE(27), - [aux_sym_qualifiedIdentifier_repeat1] = STATE(27), + [aux_sym_qualifiedIdentifier_repeat1] = STATE(30), [sym_identifier] = ACTIONS(298), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(298), @@ -8971,8 +9008,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [28] = { [sym_shebangComment] = STATE(28), + [sym_typeArgumentList] = STATE(33), [sym_lineComment] = STATE(28), - [aux_sym_qualifiedIdentifier_repeat1] = STATE(25), [sym_identifier] = ACTIONS(305), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(305), @@ -8996,7 +9033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(305), [anon_sym_PIPE] = ACTIONS(305), [anon_sym_STAR] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(309), [anon_sym_GT] = ACTIONS(305), [anon_sym_external] = ACTIONS(305), [anon_sym_abstract] = ACTIONS(305), @@ -9028,7 +9065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(307), [anon_sym_new] = ACTIONS(305), [anon_sym_super] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(305), [anon_sym_QMARK_DOT] = ACTIONS(307), [anon_sym_BANG_BANG] = ACTIONS(307), [anon_sym_DASH] = ACTIONS(307), @@ -9061,99 +9098,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [29] = { [sym_shebangComment] = STATE(29), - [sym_typeArgumentList] = STATE(41), + [sym_objectBody] = STATE(63), + [sym_argumentList] = STATE(60), [sym_lineComment] = STATE(29), - [sym_identifier] = ACTIONS(312), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(312), - [anon_sym_import] = ACTIONS(312), - [anon_sym_as] = ACTIONS(312), - [anon_sym_import_STAR] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(314), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_function] = ACTIONS(312), - [anon_sym_LBRACK] = ACTIONS(312), - [anon_sym_RBRACK] = ACTIONS(314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(314), - [anon_sym_for] = ACTIONS(312), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_RPAREN] = ACTIONS(314), - [anon_sym_when] = ACTIONS(312), - [anon_sym_else] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(312), - [anon_sym_external] = ACTIONS(312), - [anon_sym_abstract] = ACTIONS(312), - [anon_sym_open] = ACTIONS(312), - [anon_sym_local] = ACTIONS(312), - [anon_sym_hidden] = ACTIONS(312), - [anon_sym_fixed] = ACTIONS(312), - [anon_sym_const] = ACTIONS(312), - [sym_thisExpr] = ACTIONS(312), - [sym_outerExpr] = ACTIONS(312), - [sym_nullLiteral] = ACTIONS(312), - [sym_trueLiteral] = ACTIONS(312), - [sym_falseLiteral] = ACTIONS(312), - [sym_intLiteral] = ACTIONS(312), - [sym_floatLiteral] = ACTIONS(314), - [anon_sym_DQUOTE] = ACTIONS(312), - [anon_sym_POUND_DQUOTE] = ACTIONS(312), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(312), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), - [anon_sym_new] = ACTIONS(312), - [anon_sym_super] = ACTIONS(312), - [anon_sym_DOT] = ACTIONS(312), - [anon_sym_QMARK_DOT] = ACTIONS(314), - [anon_sym_BANG_BANG] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(314), - [anon_sym_BANG] = ACTIONS(312), - [anon_sym_STAR_STAR] = ACTIONS(314), - [anon_sym_QMARK_QMARK] = ACTIONS(314), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_TILDE_SLASH] = ACTIONS(314), - [anon_sym_PERCENT] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE_GT] = ACTIONS(314), - [anon_sym_is] = ACTIONS(312), - [anon_sym_if] = ACTIONS(312), - [anon_sym_let] = ACTIONS(312), - [anon_sym_throw] = ACTIONS(312), - [anon_sym_trace] = ACTIONS(312), - [anon_sym_read] = ACTIONS(312), - [anon_sym_read_QMARK] = ACTIONS(314), - [anon_sym_read_STAR] = ACTIONS(314), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(314), - }, - [30] = { - [sym_shebangComment] = STATE(30), - [sym_objectBody] = STATE(69), - [sym_argumentList] = STATE(50), - [sym_lineComment] = STATE(30), [sym_identifier] = ACTIONS(269), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(269), @@ -9239,6 +9186,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_subscript_bracket] = ACTIONS(271), [sym__open_argument_paren] = ACTIONS(281), }, + [30] = { + [sym_shebangComment] = STATE(30), + [sym_lineComment] = STATE(30), + [aux_sym_qualifiedIdentifier_repeat1] = STATE(30), + [sym_identifier] = ACTIONS(312), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(312), + [anon_sym_import] = ACTIONS(312), + [anon_sym_as] = ACTIONS(312), + [anon_sym_import_STAR] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_function] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(312), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(314), + [anon_sym_for] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_when] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(314), + [anon_sym_QMARK] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), + [anon_sym_external] = ACTIONS(312), + [anon_sym_abstract] = ACTIONS(312), + [anon_sym_open] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_hidden] = ACTIONS(312), + [anon_sym_fixed] = ACTIONS(312), + [anon_sym_const] = ACTIONS(312), + [sym_thisExpr] = ACTIONS(312), + [sym_outerExpr] = ACTIONS(312), + [sym_nullLiteral] = ACTIONS(312), + [sym_trueLiteral] = ACTIONS(312), + [sym_falseLiteral] = ACTIONS(312), + [sym_intLiteral] = ACTIONS(312), + [sym_floatLiteral] = ACTIONS(314), + [anon_sym_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_new] = ACTIONS(312), + [anon_sym_super] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_QMARK_DOT] = ACTIONS(314), + [anon_sym_BANG_BANG] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(314), + [anon_sym_BANG] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(314), + [anon_sym_QMARK_QMARK] = ACTIONS(314), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_TILDE_SLASH] = ACTIONS(314), + [anon_sym_PERCENT] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE_GT] = ACTIONS(314), + [anon_sym_is] = ACTIONS(312), + [anon_sym_if] = ACTIONS(312), + [anon_sym_let] = ACTIONS(312), + [anon_sym_throw] = ACTIONS(312), + [anon_sym_trace] = ACTIONS(312), + [anon_sym_read] = ACTIONS(312), + [anon_sym_read_QMARK] = ACTIONS(314), + [anon_sym_read_STAR] = ACTIONS(314), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(314), + }, [31] = { [sym_shebangComment] = STATE(31), [sym_lineComment] = STATE(31), @@ -9508,6 +9545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [34] = { [sym_shebangComment] = STATE(34), + [sym_argumentList] = STATE(74), [sym_lineComment] = STATE(34), [sym_identifier] = ACTIONS(331), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -9529,8 +9567,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(331), [anon_sym_DOT_DOT_DOT] = ACTIONS(331), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(333), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_PIPE] = ACTIONS(331), [anon_sym_STAR] = ACTIONS(331), [anon_sym_LT] = ACTIONS(331), [anon_sym_GT] = ACTIONS(331), @@ -9594,6 +9630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(333), + [sym__open_argument_paren] = ACTIONS(281), }, [35] = { [sym_shebangComment] = STATE(35), @@ -9687,95 +9724,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [36] = { [sym_shebangComment] = STATE(36), [sym_lineComment] = STATE(36), - [sym_identifier] = ACTIONS(298), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(298), - [anon_sym_import] = ACTIONS(298), - [anon_sym_as] = ACTIONS(298), - [anon_sym_import_STAR] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(300), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_function] = ACTIONS(298), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_RBRACK] = ACTIONS(300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(300), - [anon_sym_for] = ACTIONS(298), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_RPAREN] = ACTIONS(300), - [anon_sym_when] = ACTIONS(298), - [anon_sym_else] = ACTIONS(298), - [anon_sym_DOT_DOT_DOT] = ACTIONS(298), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(300), - [anon_sym_QMARK] = ACTIONS(298), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_STAR] = ACTIONS(298), - [anon_sym_LT] = ACTIONS(298), - [anon_sym_GT] = ACTIONS(298), - [anon_sym_external] = ACTIONS(298), - [anon_sym_abstract] = ACTIONS(298), - [anon_sym_open] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_hidden] = ACTIONS(298), - [anon_sym_fixed] = ACTIONS(298), - [anon_sym_const] = ACTIONS(298), - [sym_thisExpr] = ACTIONS(298), - [sym_outerExpr] = ACTIONS(298), - [sym_nullLiteral] = ACTIONS(298), - [sym_trueLiteral] = ACTIONS(298), - [sym_falseLiteral] = ACTIONS(298), - [sym_intLiteral] = ACTIONS(298), - [sym_floatLiteral] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(298), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(300), - [anon_sym_new] = ACTIONS(298), - [anon_sym_super] = ACTIONS(298), - [anon_sym_DOT] = ACTIONS(298), - [anon_sym_QMARK_DOT] = ACTIONS(300), - [anon_sym_BANG_BANG] = ACTIONS(300), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_BANG] = ACTIONS(298), - [anon_sym_STAR_STAR] = ACTIONS(300), - [anon_sym_QMARK_QMARK] = ACTIONS(300), - [anon_sym_SLASH] = ACTIONS(298), - [anon_sym_TILDE_SLASH] = ACTIONS(300), - [anon_sym_PERCENT] = ACTIONS(300), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_LT_EQ] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(300), - [anon_sym_EQ_EQ] = ACTIONS(300), - [anon_sym_BANG_EQ] = ACTIONS(300), - [anon_sym_AMP_AMP] = ACTIONS(300), - [anon_sym_PIPE_PIPE] = ACTIONS(300), - [anon_sym_PIPE_GT] = ACTIONS(300), - [anon_sym_is] = ACTIONS(298), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(298), - [anon_sym_throw] = ACTIONS(298), - [anon_sym_trace] = ACTIONS(298), - [anon_sym_read] = ACTIONS(298), - [anon_sym_read_QMARK] = ACTIONS(300), - [anon_sym_read_STAR] = ACTIONS(300), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(300), - }, - [37] = { - [sym_shebangComment] = STATE(37), - [sym_lineComment] = STATE(37), [sym_identifier] = ACTIONS(339), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(339), @@ -9789,14 +9737,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(341), [anon_sym_LBRACK_LBRACK] = ACTIONS(341), [anon_sym_for] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), [anon_sym_COMMA] = ACTIONS(341), [anon_sym_RPAREN] = ACTIONS(341), [anon_sym_when] = ACTIONS(339), [anon_sym_else] = ACTIONS(339), [anon_sym_DOT_DOT_DOT] = ACTIONS(339), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(341), - [anon_sym_QMARK] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(345), [anon_sym_PIPE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(339), [anon_sym_LT] = ACTIONS(339), @@ -9862,98 +9810,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(341), }, - [38] = { - [sym_shebangComment] = STATE(38), - [sym_lineComment] = STATE(38), - [sym_identifier] = ACTIONS(343), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(343), - [anon_sym_import] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_import_STAR] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(345), - [anon_sym_function] = ACTIONS(343), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_RBRACK] = ACTIONS(345), - [anon_sym_LBRACK_LBRACK] = ACTIONS(345), - [anon_sym_for] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(345), - [anon_sym_when] = ACTIONS(343), - [anon_sym_else] = ACTIONS(343), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(345), - [anon_sym_QMARK] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_external] = ACTIONS(343), - [anon_sym_abstract] = ACTIONS(343), - [anon_sym_open] = ACTIONS(343), - [anon_sym_local] = ACTIONS(343), - [anon_sym_hidden] = ACTIONS(343), - [anon_sym_fixed] = ACTIONS(343), - [anon_sym_const] = ACTIONS(343), - [sym_thisExpr] = ACTIONS(343), - [sym_outerExpr] = ACTIONS(343), - [sym_nullLiteral] = ACTIONS(343), - [sym_trueLiteral] = ACTIONS(343), - [sym_falseLiteral] = ACTIONS(343), - [sym_intLiteral] = ACTIONS(343), - [sym_floatLiteral] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_POUND_DQUOTE] = ACTIONS(343), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(343), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(343), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(343), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(343), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(343), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(345), - [anon_sym_new] = ACTIONS(343), - [anon_sym_super] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_QMARK_DOT] = ACTIONS(345), - [anon_sym_BANG_BANG] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), - [anon_sym_QMARK_QMARK] = ACTIONS(345), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_TILDE_SLASH] = ACTIONS(345), - [anon_sym_PERCENT] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_LT_EQ] = ACTIONS(345), - [anon_sym_GT_EQ] = ACTIONS(345), - [anon_sym_EQ_EQ] = ACTIONS(345), - [anon_sym_BANG_EQ] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_PIPE_GT] = ACTIONS(345), - [anon_sym_is] = ACTIONS(343), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(343), - [anon_sym_throw] = ACTIONS(343), - [anon_sym_trace] = ACTIONS(343), - [anon_sym_read] = ACTIONS(343), - [anon_sym_read_QMARK] = ACTIONS(345), - [anon_sym_read_STAR] = ACTIONS(345), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(345), - }, - [39] = { - [sym_shebangComment] = STATE(39), - [sym_lineComment] = STATE(39), + [37] = { + [sym_shebangComment] = STATE(37), + [sym_lineComment] = STATE(37), [sym_identifier] = ACTIONS(347), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(347), @@ -9967,14 +9826,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(349), [anon_sym_LBRACK_LBRACK] = ACTIONS(349), [anon_sym_for] = ACTIONS(347), - [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(343), [anon_sym_COMMA] = ACTIONS(349), [anon_sym_RPAREN] = ACTIONS(349), [anon_sym_when] = ACTIONS(347), [anon_sym_else] = ACTIONS(347), [anon_sym_DOT_DOT_DOT] = ACTIONS(347), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(345), [anon_sym_PIPE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(347), [anon_sym_LT] = ACTIONS(347), @@ -10040,9 +9899,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(349), }, - [40] = { - [sym_shebangComment] = STATE(40), - [sym_lineComment] = STATE(40), + [38] = { + [sym_shebangComment] = STATE(38), + [sym_lineComment] = STATE(38), [sym_identifier] = ACTIONS(351), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(351), @@ -10056,14 +9915,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(353), [anon_sym_LBRACK_LBRACK] = ACTIONS(353), [anon_sym_for] = ACTIONS(351), - [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(353), [anon_sym_COMMA] = ACTIONS(353), [anon_sym_RPAREN] = ACTIONS(353), [anon_sym_when] = ACTIONS(351), [anon_sym_else] = ACTIONS(351), [anon_sym_DOT_DOT_DOT] = ACTIONS(351), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(353), - [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(351), [anon_sym_PIPE] = ACTIONS(351), [anon_sym_STAR] = ACTIONS(351), [anon_sym_LT] = ACTIONS(351), @@ -10129,9 +9988,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(353), }, - [41] = { - [sym_shebangComment] = STATE(41), - [sym_lineComment] = STATE(41), + [39] = { + [sym_shebangComment] = STATE(39), + [sym_lineComment] = STATE(39), + [sym_identifier] = ACTIONS(355), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(355), + [anon_sym_import] = ACTIONS(355), + [anon_sym_as] = ACTIONS(355), + [anon_sym_import_STAR] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_function] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_RBRACK] = ACTIONS(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(357), + [anon_sym_for] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [anon_sym_when] = ACTIONS(355), + [anon_sym_else] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(355), + [anon_sym_external] = ACTIONS(355), + [anon_sym_abstract] = ACTIONS(355), + [anon_sym_open] = ACTIONS(355), + [anon_sym_local] = ACTIONS(355), + [anon_sym_hidden] = ACTIONS(355), + [anon_sym_fixed] = ACTIONS(355), + [anon_sym_const] = ACTIONS(355), + [sym_thisExpr] = ACTIONS(355), + [sym_outerExpr] = ACTIONS(355), + [sym_nullLiteral] = ACTIONS(355), + [sym_trueLiteral] = ACTIONS(355), + [sym_falseLiteral] = ACTIONS(355), + [sym_intLiteral] = ACTIONS(355), + [sym_floatLiteral] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_POUND_DQUOTE] = ACTIONS(355), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(355), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(355), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(355), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(355), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [anon_sym_new] = ACTIONS(355), + [anon_sym_super] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_QMARK_DOT] = ACTIONS(357), + [anon_sym_BANG_BANG] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_STAR_STAR] = ACTIONS(357), + [anon_sym_QMARK_QMARK] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(355), + [anon_sym_TILDE_SLASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_LT_EQ] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(357), + [anon_sym_BANG_EQ] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(357), + [anon_sym_PIPE_PIPE] = ACTIONS(357), + [anon_sym_PIPE_GT] = ACTIONS(357), + [anon_sym_is] = ACTIONS(355), + [anon_sym_if] = ACTIONS(355), + [anon_sym_let] = ACTIONS(355), + [anon_sym_throw] = ACTIONS(355), + [anon_sym_trace] = ACTIONS(355), + [anon_sym_read] = ACTIONS(355), + [anon_sym_read_QMARK] = ACTIONS(357), + [anon_sym_read_STAR] = ACTIONS(357), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(357), + }, + [40] = { + [sym_shebangComment] = STATE(40), + [sym_lineComment] = STATE(40), [sym_identifier] = ACTIONS(359), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(359), @@ -10218,9 +10166,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(361), }, - [42] = { - [sym_shebangComment] = STATE(42), - [sym_lineComment] = STATE(42), + [41] = { + [sym_shebangComment] = STATE(41), + [sym_lineComment] = STATE(41), [sym_identifier] = ACTIONS(363), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(363), @@ -10234,14 +10182,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(365), [anon_sym_LBRACK_LBRACK] = ACTIONS(365), [anon_sym_for] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(365), [anon_sym_COMMA] = ACTIONS(365), [anon_sym_RPAREN] = ACTIONS(365), [anon_sym_when] = ACTIONS(363), [anon_sym_else] = ACTIONS(363), [anon_sym_DOT_DOT_DOT] = ACTIONS(363), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(363), [anon_sym_PIPE] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(363), [anon_sym_LT] = ACTIONS(363), @@ -10307,6 +10255,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(365), }, + [42] = { + [sym_shebangComment] = STATE(42), + [sym_lineComment] = STATE(42), + [sym_identifier] = ACTIONS(312), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(312), + [anon_sym_import] = ACTIONS(312), + [anon_sym_as] = ACTIONS(312), + [anon_sym_import_STAR] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_function] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(312), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(314), + [anon_sym_for] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_when] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(314), + [anon_sym_QMARK] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), + [anon_sym_external] = ACTIONS(312), + [anon_sym_abstract] = ACTIONS(312), + [anon_sym_open] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_hidden] = ACTIONS(312), + [anon_sym_fixed] = ACTIONS(312), + [anon_sym_const] = ACTIONS(312), + [sym_thisExpr] = ACTIONS(312), + [sym_outerExpr] = ACTIONS(312), + [sym_nullLiteral] = ACTIONS(312), + [sym_trueLiteral] = ACTIONS(312), + [sym_falseLiteral] = ACTIONS(312), + [sym_intLiteral] = ACTIONS(312), + [sym_floatLiteral] = ACTIONS(314), + [anon_sym_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(314), + [anon_sym_new] = ACTIONS(312), + [anon_sym_super] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(312), + [anon_sym_QMARK_DOT] = ACTIONS(314), + [anon_sym_BANG_BANG] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(314), + [anon_sym_BANG] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(314), + [anon_sym_QMARK_QMARK] = ACTIONS(314), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_TILDE_SLASH] = ACTIONS(314), + [anon_sym_PERCENT] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE_GT] = ACTIONS(314), + [anon_sym_is] = ACTIONS(312), + [anon_sym_if] = ACTIONS(312), + [anon_sym_let] = ACTIONS(312), + [anon_sym_throw] = ACTIONS(312), + [anon_sym_trace] = ACTIONS(312), + [anon_sym_read] = ACTIONS(312), + [anon_sym_read_QMARK] = ACTIONS(314), + [anon_sym_read_STAR] = ACTIONS(314), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(314), + }, [43] = { [sym_shebangComment] = STATE(43), [sym_lineComment] = STATE(43), @@ -10323,14 +10360,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(369), [anon_sym_LBRACK_LBRACK] = ACTIONS(369), [anon_sym_for] = ACTIONS(367), - [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(369), [anon_sym_COMMA] = ACTIONS(369), [anon_sym_RPAREN] = ACTIONS(369), [anon_sym_when] = ACTIONS(367), [anon_sym_else] = ACTIONS(367), [anon_sym_DOT_DOT_DOT] = ACTIONS(367), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(369), - [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(367), [anon_sym_PIPE] = ACTIONS(367), [anon_sym_STAR] = ACTIONS(367), [anon_sym_LT] = ACTIONS(367), @@ -10501,14 +10538,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(377), [anon_sym_LBRACK_LBRACK] = ACTIONS(377), [anon_sym_for] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(377), [anon_sym_COMMA] = ACTIONS(377), [anon_sym_RPAREN] = ACTIONS(377), [anon_sym_when] = ACTIONS(375), [anon_sym_else] = ACTIONS(375), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_PIPE] = ACTIONS(375), [anon_sym_STAR] = ACTIONS(375), [anon_sym_LT] = ACTIONS(375), @@ -10590,14 +10627,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(381), [anon_sym_LBRACK_LBRACK] = ACTIONS(381), [anon_sym_for] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(381), [anon_sym_COMMA] = ACTIONS(381), [anon_sym_RPAREN] = ACTIONS(381), [anon_sym_when] = ACTIONS(379), [anon_sym_else] = ACTIONS(379), [anon_sym_DOT_DOT_DOT] = ACTIONS(379), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_PIPE] = ACTIONS(379), [anon_sym_STAR] = ACTIONS(379), [anon_sym_LT] = ACTIONS(379), @@ -10665,7 +10702,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [47] = { [sym_shebangComment] = STATE(47), - [sym_argumentList] = STATE(64), [sym_lineComment] = STATE(47), [sym_identifier] = ACTIONS(383), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -10680,13 +10716,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(385), [anon_sym_LBRACK_LBRACK] = ACTIONS(385), [anon_sym_for] = ACTIONS(383), - [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(343), [anon_sym_COMMA] = ACTIONS(385), [anon_sym_RPAREN] = ACTIONS(385), [anon_sym_when] = ACTIONS(383), [anon_sym_else] = ACTIONS(383), [anon_sym_DOT_DOT_DOT] = ACTIONS(383), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(345), + [anon_sym_PIPE] = ACTIONS(383), [anon_sym_STAR] = ACTIONS(383), [anon_sym_LT] = ACTIONS(383), [anon_sym_GT] = ACTIONS(383), @@ -10750,7 +10788,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(385), - [sym__open_argument_paren] = ACTIONS(281), }, [48] = { [sym_shebangComment] = STATE(48), @@ -10768,14 +10805,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(389), [anon_sym_LBRACK_LBRACK] = ACTIONS(389), [anon_sym_for] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(343), [anon_sym_COMMA] = ACTIONS(389), [anon_sym_RPAREN] = ACTIONS(389), [anon_sym_when] = ACTIONS(387), [anon_sym_else] = ACTIONS(387), [anon_sym_DOT_DOT_DOT] = ACTIONS(387), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(345), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_STAR] = ACTIONS(387), [anon_sym_LT] = ACTIONS(387), @@ -10843,7 +10880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [49] = { [sym_shebangComment] = STATE(49), - [sym_objectBody] = STATE(61), + [sym_objectBody] = STATE(58), [sym_lineComment] = STATE(49), [sym_identifier] = ACTIONS(391), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -11280,528 +11317,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [54] = { [sym_shebangComment] = STATE(54), [sym_lineComment] = STATE(54), - [sym_identifier] = ACTIONS(411), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(411), - [anon_sym_import] = ACTIONS(411), - [anon_sym_as] = ACTIONS(411), - [anon_sym_import_STAR] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_function] = ACTIONS(411), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_RBRACK] = ACTIONS(413), - [anon_sym_LBRACK_LBRACK] = ACTIONS(413), - [anon_sym_for] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(413), - [anon_sym_COMMA] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(413), - [anon_sym_when] = ACTIONS(411), - [anon_sym_else] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_external] = ACTIONS(411), - [anon_sym_abstract] = ACTIONS(411), - [anon_sym_open] = ACTIONS(411), - [anon_sym_local] = ACTIONS(411), - [anon_sym_hidden] = ACTIONS(411), - [anon_sym_fixed] = ACTIONS(411), - [anon_sym_const] = ACTIONS(411), - [sym_thisExpr] = ACTIONS(411), - [sym_outerExpr] = ACTIONS(411), - [sym_nullLiteral] = ACTIONS(411), - [sym_trueLiteral] = ACTIONS(411), - [sym_falseLiteral] = ACTIONS(411), - [sym_intLiteral] = ACTIONS(411), - [sym_floatLiteral] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_new] = ACTIONS(411), - [anon_sym_super] = ACTIONS(411), - [anon_sym_DOT] = ACTIONS(411), - [anon_sym_QMARK_DOT] = ACTIONS(413), - [anon_sym_BANG_BANG] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_STAR_STAR] = ACTIONS(413), - [anon_sym_QMARK_QMARK] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(411), - [anon_sym_TILDE_SLASH] = ACTIONS(413), - [anon_sym_PERCENT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_LT_EQ] = ACTIONS(413), - [anon_sym_GT_EQ] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_BANG_EQ] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_PIPE_GT] = ACTIONS(413), - [anon_sym_is] = ACTIONS(411), - [anon_sym_if] = ACTIONS(411), - [anon_sym_let] = ACTIONS(411), - [anon_sym_throw] = ACTIONS(411), - [anon_sym_trace] = ACTIONS(411), - [anon_sym_read] = ACTIONS(411), - [anon_sym_read_QMARK] = ACTIONS(413), - [anon_sym_read_STAR] = ACTIONS(413), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(413), - }, - [55] = { - [sym_shebangComment] = STATE(55), - [sym_lineComment] = STATE(55), - [sym_identifier] = ACTIONS(411), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(411), - [anon_sym_import] = ACTIONS(411), - [anon_sym_as] = ACTIONS(411), - [anon_sym_import_STAR] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_function] = ACTIONS(411), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_RBRACK] = ACTIONS(413), - [anon_sym_LBRACK_LBRACK] = ACTIONS(413), - [anon_sym_for] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(413), - [anon_sym_COMMA] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(413), - [anon_sym_when] = ACTIONS(411), - [anon_sym_else] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_external] = ACTIONS(411), - [anon_sym_abstract] = ACTIONS(411), - [anon_sym_open] = ACTIONS(411), - [anon_sym_local] = ACTIONS(411), - [anon_sym_hidden] = ACTIONS(411), - [anon_sym_fixed] = ACTIONS(411), - [anon_sym_const] = ACTIONS(411), - [sym_thisExpr] = ACTIONS(411), - [sym_outerExpr] = ACTIONS(411), - [sym_nullLiteral] = ACTIONS(411), - [sym_trueLiteral] = ACTIONS(411), - [sym_falseLiteral] = ACTIONS(411), - [sym_intLiteral] = ACTIONS(411), - [sym_floatLiteral] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_new] = ACTIONS(411), - [anon_sym_super] = ACTIONS(411), - [anon_sym_DOT] = ACTIONS(411), - [anon_sym_QMARK_DOT] = ACTIONS(413), - [anon_sym_BANG_BANG] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_STAR_STAR] = ACTIONS(413), - [anon_sym_QMARK_QMARK] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(411), - [anon_sym_TILDE_SLASH] = ACTIONS(413), - [anon_sym_PERCENT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_LT_EQ] = ACTIONS(413), - [anon_sym_GT_EQ] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_BANG_EQ] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_PIPE_GT] = ACTIONS(413), - [anon_sym_is] = ACTIONS(411), - [anon_sym_if] = ACTIONS(411), - [anon_sym_let] = ACTIONS(411), - [anon_sym_throw] = ACTIONS(411), - [anon_sym_trace] = ACTIONS(411), - [anon_sym_read] = ACTIONS(411), - [anon_sym_read_QMARK] = ACTIONS(413), - [anon_sym_read_STAR] = ACTIONS(413), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(413), - }, - [56] = { - [sym_shebangComment] = STATE(56), - [sym_lineComment] = STATE(56), - [sym_identifier] = ACTIONS(411), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(411), - [anon_sym_import] = ACTIONS(411), - [anon_sym_as] = ACTIONS(411), - [anon_sym_import_STAR] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_function] = ACTIONS(411), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_RBRACK] = ACTIONS(413), - [anon_sym_LBRACK_LBRACK] = ACTIONS(413), - [anon_sym_for] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(413), - [anon_sym_COMMA] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(413), - [anon_sym_when] = ACTIONS(411), - [anon_sym_else] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_external] = ACTIONS(411), - [anon_sym_abstract] = ACTIONS(411), - [anon_sym_open] = ACTIONS(411), - [anon_sym_local] = ACTIONS(411), - [anon_sym_hidden] = ACTIONS(411), - [anon_sym_fixed] = ACTIONS(411), - [anon_sym_const] = ACTIONS(411), - [sym_thisExpr] = ACTIONS(411), - [sym_outerExpr] = ACTIONS(411), - [sym_nullLiteral] = ACTIONS(411), - [sym_trueLiteral] = ACTIONS(411), - [sym_falseLiteral] = ACTIONS(411), - [sym_intLiteral] = ACTIONS(411), - [sym_floatLiteral] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), - [anon_sym_new] = ACTIONS(411), - [anon_sym_super] = ACTIONS(411), - [anon_sym_DOT] = ACTIONS(411), - [anon_sym_QMARK_DOT] = ACTIONS(413), - [anon_sym_BANG_BANG] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_STAR_STAR] = ACTIONS(413), - [anon_sym_QMARK_QMARK] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(411), - [anon_sym_TILDE_SLASH] = ACTIONS(413), - [anon_sym_PERCENT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_LT_EQ] = ACTIONS(413), - [anon_sym_GT_EQ] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_BANG_EQ] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_PIPE_GT] = ACTIONS(413), - [anon_sym_is] = ACTIONS(411), - [anon_sym_if] = ACTIONS(411), - [anon_sym_let] = ACTIONS(411), - [anon_sym_throw] = ACTIONS(411), - [anon_sym_trace] = ACTIONS(411), - [anon_sym_read] = ACTIONS(411), - [anon_sym_read_QMARK] = ACTIONS(413), - [anon_sym_read_STAR] = ACTIONS(413), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(413), - }, - [57] = { - [sym_shebangComment] = STATE(57), - [sym_lineComment] = STATE(57), - [sym_identifier] = ACTIONS(417), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(417), - [anon_sym_import] = ACTIONS(417), - [anon_sym_as] = ACTIONS(417), - [anon_sym_import_STAR] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(419), - [anon_sym_for] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_when] = ACTIONS(417), - [anon_sym_else] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_external] = ACTIONS(417), - [anon_sym_abstract] = ACTIONS(417), - [anon_sym_open] = ACTIONS(417), - [anon_sym_local] = ACTIONS(417), - [anon_sym_hidden] = ACTIONS(417), - [anon_sym_fixed] = ACTIONS(417), - [anon_sym_const] = ACTIONS(417), - [sym_thisExpr] = ACTIONS(417), - [sym_outerExpr] = ACTIONS(417), - [sym_nullLiteral] = ACTIONS(417), - [sym_trueLiteral] = ACTIONS(417), - [sym_falseLiteral] = ACTIONS(417), - [sym_intLiteral] = ACTIONS(417), - [sym_floatLiteral] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(417), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(419), - [anon_sym_new] = ACTIONS(417), - [anon_sym_super] = ACTIONS(417), - [anon_sym_DOT] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(419), - [anon_sym_BANG_BANG] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_STAR_STAR] = ACTIONS(419), - [anon_sym_QMARK_QMARK] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_TILDE_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_PIPE_GT] = ACTIONS(419), - [anon_sym_is] = ACTIONS(417), - [anon_sym_if] = ACTIONS(417), - [anon_sym_let] = ACTIONS(417), - [anon_sym_throw] = ACTIONS(417), - [anon_sym_trace] = ACTIONS(417), - [anon_sym_read] = ACTIONS(417), - [anon_sym_read_QMARK] = ACTIONS(419), - [anon_sym_read_STAR] = ACTIONS(419), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(419), - }, - [58] = { - [sym_shebangComment] = STATE(58), - [sym_lineComment] = STATE(58), - [sym_identifier] = ACTIONS(421), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(421), - [anon_sym_import] = ACTIONS(421), - [anon_sym_as] = ACTIONS(421), - [anon_sym_import_STAR] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_function] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_RBRACK] = ACTIONS(423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(423), - [anon_sym_for] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(423), - [anon_sym_COMMA] = ACTIONS(423), - [anon_sym_RPAREN] = ACTIONS(423), - [anon_sym_when] = ACTIONS(421), - [anon_sym_else] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_GT] = ACTIONS(421), - [anon_sym_external] = ACTIONS(421), - [anon_sym_abstract] = ACTIONS(421), - [anon_sym_open] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_hidden] = ACTIONS(421), - [anon_sym_fixed] = ACTIONS(421), - [anon_sym_const] = ACTIONS(421), - [sym_thisExpr] = ACTIONS(421), - [sym_outerExpr] = ACTIONS(421), - [sym_nullLiteral] = ACTIONS(421), - [sym_trueLiteral] = ACTIONS(421), - [sym_falseLiteral] = ACTIONS(421), - [sym_intLiteral] = ACTIONS(421), - [sym_floatLiteral] = ACTIONS(423), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_POUND_DQUOTE] = ACTIONS(421), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(421), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(421), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(421), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(421), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(421), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(423), - [anon_sym_new] = ACTIONS(421), - [anon_sym_super] = ACTIONS(421), - [anon_sym_DOT] = ACTIONS(421), - [anon_sym_QMARK_DOT] = ACTIONS(423), - [anon_sym_BANG_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_STAR_STAR] = ACTIONS(423), - [anon_sym_QMARK_QMARK] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(421), - [anon_sym_TILDE_SLASH] = ACTIONS(423), - [anon_sym_PERCENT] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(423), - [anon_sym_BANG_EQ] = ACTIONS(423), - [anon_sym_AMP_AMP] = ACTIONS(423), - [anon_sym_PIPE_PIPE] = ACTIONS(423), - [anon_sym_PIPE_GT] = ACTIONS(423), - [anon_sym_is] = ACTIONS(421), - [anon_sym_if] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_throw] = ACTIONS(421), - [anon_sym_trace] = ACTIONS(421), - [anon_sym_read] = ACTIONS(421), - [anon_sym_read_QMARK] = ACTIONS(423), - [anon_sym_read_STAR] = ACTIONS(423), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(423), - }, - [59] = { - [sym_shebangComment] = STATE(59), - [sym_lineComment] = STATE(59), - [sym_identifier] = ACTIONS(425), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(425), - [anon_sym_import] = ACTIONS(425), - [anon_sym_as] = ACTIONS(425), - [anon_sym_import_STAR] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_function] = ACTIONS(425), - [anon_sym_LBRACK] = ACTIONS(425), - [anon_sym_RBRACK] = ACTIONS(427), - [anon_sym_LBRACK_LBRACK] = ACTIONS(427), - [anon_sym_for] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_COMMA] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(427), - [anon_sym_when] = ACTIONS(425), - [anon_sym_else] = ACTIONS(425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(425), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_GT] = ACTIONS(425), - [anon_sym_external] = ACTIONS(425), - [anon_sym_abstract] = ACTIONS(425), - [anon_sym_open] = ACTIONS(425), - [anon_sym_local] = ACTIONS(425), - [anon_sym_hidden] = ACTIONS(425), - [anon_sym_fixed] = ACTIONS(425), - [anon_sym_const] = ACTIONS(425), - [sym_thisExpr] = ACTIONS(425), - [sym_outerExpr] = ACTIONS(425), - [sym_nullLiteral] = ACTIONS(425), - [sym_trueLiteral] = ACTIONS(425), - [sym_falseLiteral] = ACTIONS(425), - [sym_intLiteral] = ACTIONS(425), - [sym_floatLiteral] = ACTIONS(427), - [anon_sym_DQUOTE] = ACTIONS(425), - [anon_sym_POUND_DQUOTE] = ACTIONS(425), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(425), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(425), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(425), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(425), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(425), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(427), - [anon_sym_new] = ACTIONS(425), - [anon_sym_super] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(427), - [anon_sym_BANG_BANG] = ACTIONS(427), - [anon_sym_DASH] = ACTIONS(427), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_STAR_STAR] = ACTIONS(427), - [anon_sym_QMARK_QMARK] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(425), - [anon_sym_TILDE_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(427), - [anon_sym_LT_EQ] = ACTIONS(427), - [anon_sym_GT_EQ] = ACTIONS(427), - [anon_sym_EQ_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_AMP_AMP] = ACTIONS(427), - [anon_sym_PIPE_PIPE] = ACTIONS(427), - [anon_sym_PIPE_GT] = ACTIONS(427), - [anon_sym_is] = ACTIONS(425), - [anon_sym_if] = ACTIONS(425), - [anon_sym_let] = ACTIONS(425), - [anon_sym_throw] = ACTIONS(425), - [anon_sym_trace] = ACTIONS(425), - [anon_sym_read] = ACTIONS(425), - [anon_sym_read_QMARK] = ACTIONS(427), - [anon_sym_read_STAR] = ACTIONS(427), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(427), - }, - [60] = { - [sym_shebangComment] = STATE(60), - [sym_lineComment] = STATE(60), [sym_identifier] = ACTIONS(391), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(391), @@ -11886,962 +11401,1484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(393), }, + [55] = { + [sym_shebangComment] = STATE(55), + [sym_lineComment] = STATE(55), + [sym_identifier] = ACTIONS(411), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(411), + [anon_sym_import] = ACTIONS(411), + [anon_sym_as] = ACTIONS(411), + [anon_sym_import_STAR] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_function] = ACTIONS(411), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_RBRACK] = ACTIONS(413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(413), + [anon_sym_for] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [anon_sym_when] = ACTIONS(411), + [anon_sym_else] = ACTIONS(411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_external] = ACTIONS(411), + [anon_sym_abstract] = ACTIONS(411), + [anon_sym_open] = ACTIONS(411), + [anon_sym_local] = ACTIONS(411), + [anon_sym_hidden] = ACTIONS(411), + [anon_sym_fixed] = ACTIONS(411), + [anon_sym_const] = ACTIONS(411), + [sym_thisExpr] = ACTIONS(411), + [sym_outerExpr] = ACTIONS(411), + [sym_nullLiteral] = ACTIONS(411), + [sym_trueLiteral] = ACTIONS(411), + [sym_falseLiteral] = ACTIONS(411), + [sym_intLiteral] = ACTIONS(411), + [sym_floatLiteral] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(411), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(413), + [anon_sym_new] = ACTIONS(411), + [anon_sym_super] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_QMARK_DOT] = ACTIONS(413), + [anon_sym_BANG_BANG] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_STAR_STAR] = ACTIONS(413), + [anon_sym_QMARK_QMARK] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(411), + [anon_sym_TILDE_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_PIPE_GT] = ACTIONS(413), + [anon_sym_is] = ACTIONS(411), + [anon_sym_if] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_throw] = ACTIONS(411), + [anon_sym_trace] = ACTIONS(411), + [anon_sym_read] = ACTIONS(411), + [anon_sym_read_QMARK] = ACTIONS(413), + [anon_sym_read_STAR] = ACTIONS(413), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(413), + }, + [56] = { + [sym_shebangComment] = STATE(56), + [sym_lineComment] = STATE(56), + [sym_identifier] = ACTIONS(415), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(415), + [anon_sym_import] = ACTIONS(415), + [anon_sym_as] = ACTIONS(415), + [anon_sym_import_STAR] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_function] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_RBRACK] = ACTIONS(417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(417), + [anon_sym_for] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(417), + [anon_sym_RPAREN] = ACTIONS(417), + [anon_sym_when] = ACTIONS(415), + [anon_sym_else] = ACTIONS(415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(415), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_external] = ACTIONS(415), + [anon_sym_abstract] = ACTIONS(415), + [anon_sym_open] = ACTIONS(415), + [anon_sym_local] = ACTIONS(415), + [anon_sym_hidden] = ACTIONS(415), + [anon_sym_fixed] = ACTIONS(415), + [anon_sym_const] = ACTIONS(415), + [sym_thisExpr] = ACTIONS(415), + [sym_outerExpr] = ACTIONS(415), + [sym_nullLiteral] = ACTIONS(415), + [sym_trueLiteral] = ACTIONS(415), + [sym_falseLiteral] = ACTIONS(415), + [sym_intLiteral] = ACTIONS(415), + [sym_floatLiteral] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_POUND_DQUOTE] = ACTIONS(415), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(415), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(415), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(415), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(415), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(417), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(417), + [anon_sym_new] = ACTIONS(415), + [anon_sym_super] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(415), + [anon_sym_QMARK_DOT] = ACTIONS(417), + [anon_sym_BANG_BANG] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_STAR_STAR] = ACTIONS(417), + [anon_sym_QMARK_QMARK] = ACTIONS(417), + [anon_sym_SLASH] = ACTIONS(415), + [anon_sym_TILDE_SLASH] = ACTIONS(417), + [anon_sym_PERCENT] = ACTIONS(417), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_PIPE_GT] = ACTIONS(417), + [anon_sym_is] = ACTIONS(415), + [anon_sym_if] = ACTIONS(415), + [anon_sym_let] = ACTIONS(415), + [anon_sym_throw] = ACTIONS(415), + [anon_sym_trace] = ACTIONS(415), + [anon_sym_read] = ACTIONS(415), + [anon_sym_read_QMARK] = ACTIONS(417), + [anon_sym_read_STAR] = ACTIONS(417), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(417), + }, + [57] = { + [sym_shebangComment] = STATE(57), + [sym_lineComment] = STATE(57), + [sym_identifier] = ACTIONS(419), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(419), + [anon_sym_import] = ACTIONS(419), + [anon_sym_as] = ACTIONS(419), + [anon_sym_import_STAR] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_function] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_RBRACK] = ACTIONS(421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(421), + [anon_sym_for] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(421), + [anon_sym_when] = ACTIONS(419), + [anon_sym_else] = ACTIONS(419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(419), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_external] = ACTIONS(419), + [anon_sym_abstract] = ACTIONS(419), + [anon_sym_open] = ACTIONS(419), + [anon_sym_local] = ACTIONS(419), + [anon_sym_hidden] = ACTIONS(419), + [anon_sym_fixed] = ACTIONS(419), + [anon_sym_const] = ACTIONS(419), + [sym_thisExpr] = ACTIONS(419), + [sym_outerExpr] = ACTIONS(419), + [sym_nullLiteral] = ACTIONS(419), + [sym_trueLiteral] = ACTIONS(419), + [sym_falseLiteral] = ACTIONS(419), + [sym_intLiteral] = ACTIONS(419), + [sym_floatLiteral] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(419), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(421), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(421), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(421), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(421), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(421), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(421), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(421), + [anon_sym_new] = ACTIONS(419), + [anon_sym_super] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_QMARK_DOT] = ACTIONS(421), + [anon_sym_BANG_BANG] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_STAR_STAR] = ACTIONS(421), + [anon_sym_QMARK_QMARK] = ACTIONS(421), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_TILDE_SLASH] = ACTIONS(421), + [anon_sym_PERCENT] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_LT_EQ] = ACTIONS(421), + [anon_sym_GT_EQ] = ACTIONS(421), + [anon_sym_EQ_EQ] = ACTIONS(421), + [anon_sym_BANG_EQ] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_PIPE_GT] = ACTIONS(421), + [anon_sym_is] = ACTIONS(419), + [anon_sym_if] = ACTIONS(419), + [anon_sym_let] = ACTIONS(419), + [anon_sym_throw] = ACTIONS(419), + [anon_sym_trace] = ACTIONS(419), + [anon_sym_read] = ACTIONS(419), + [anon_sym_read_QMARK] = ACTIONS(421), + [anon_sym_read_STAR] = ACTIONS(421), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(421), + }, + [58] = { + [sym_shebangComment] = STATE(58), + [sym_lineComment] = STATE(58), + [sym_identifier] = ACTIONS(423), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(423), + [anon_sym_import] = ACTIONS(423), + [anon_sym_as] = ACTIONS(423), + [anon_sym_import_STAR] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_function] = ACTIONS(423), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_RBRACK] = ACTIONS(425), + [anon_sym_LBRACK_LBRACK] = ACTIONS(425), + [anon_sym_for] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(425), + [anon_sym_RPAREN] = ACTIONS(425), + [anon_sym_when] = ACTIONS(423), + [anon_sym_else] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_external] = ACTIONS(423), + [anon_sym_abstract] = ACTIONS(423), + [anon_sym_open] = ACTIONS(423), + [anon_sym_local] = ACTIONS(423), + [anon_sym_hidden] = ACTIONS(423), + [anon_sym_fixed] = ACTIONS(423), + [anon_sym_const] = ACTIONS(423), + [sym_thisExpr] = ACTIONS(423), + [sym_outerExpr] = ACTIONS(423), + [sym_nullLiteral] = ACTIONS(423), + [sym_trueLiteral] = ACTIONS(423), + [sym_falseLiteral] = ACTIONS(423), + [sym_intLiteral] = ACTIONS(423), + [sym_floatLiteral] = ACTIONS(425), + [anon_sym_DQUOTE] = ACTIONS(423), + [anon_sym_POUND_DQUOTE] = ACTIONS(423), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(423), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(423), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(423), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(423), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(425), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(425), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(425), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(425), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(425), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(425), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(425), + [anon_sym_new] = ACTIONS(423), + [anon_sym_super] = ACTIONS(423), + [anon_sym_DOT] = ACTIONS(423), + [anon_sym_QMARK_DOT] = ACTIONS(425), + [anon_sym_BANG_BANG] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_QMARK] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(423), + [anon_sym_TILDE_SLASH] = ACTIONS(425), + [anon_sym_PERCENT] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PIPE_GT] = ACTIONS(425), + [anon_sym_is] = ACTIONS(423), + [anon_sym_if] = ACTIONS(423), + [anon_sym_let] = ACTIONS(423), + [anon_sym_throw] = ACTIONS(423), + [anon_sym_trace] = ACTIONS(423), + [anon_sym_read] = ACTIONS(423), + [anon_sym_read_QMARK] = ACTIONS(425), + [anon_sym_read_STAR] = ACTIONS(425), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(425), + }, + [59] = { + [sym_shebangComment] = STATE(59), + [sym_lineComment] = STATE(59), + [sym_identifier] = ACTIONS(427), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(427), + [anon_sym_import] = ACTIONS(427), + [anon_sym_as] = ACTIONS(427), + [anon_sym_import_STAR] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_function] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_RBRACK] = ACTIONS(429), + [anon_sym_LBRACK_LBRACK] = ACTIONS(429), + [anon_sym_for] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_when] = ACTIONS(427), + [anon_sym_else] = ACTIONS(427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_external] = ACTIONS(427), + [anon_sym_abstract] = ACTIONS(427), + [anon_sym_open] = ACTIONS(427), + [anon_sym_local] = ACTIONS(427), + [anon_sym_hidden] = ACTIONS(427), + [anon_sym_fixed] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [sym_thisExpr] = ACTIONS(427), + [sym_outerExpr] = ACTIONS(427), + [sym_nullLiteral] = ACTIONS(427), + [sym_trueLiteral] = ACTIONS(427), + [sym_falseLiteral] = ACTIONS(427), + [sym_intLiteral] = ACTIONS(427), + [sym_floatLiteral] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_new] = ACTIONS(427), + [anon_sym_super] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_QMARK_DOT] = ACTIONS(429), + [anon_sym_BANG_BANG] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_STAR_STAR] = ACTIONS(429), + [anon_sym_QMARK_QMARK] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_TILDE_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [anon_sym_PIPE_GT] = ACTIONS(429), + [anon_sym_is] = ACTIONS(427), + [anon_sym_if] = ACTIONS(427), + [anon_sym_let] = ACTIONS(427), + [anon_sym_throw] = ACTIONS(427), + [anon_sym_trace] = ACTIONS(427), + [anon_sym_read] = ACTIONS(427), + [anon_sym_read_QMARK] = ACTIONS(429), + [anon_sym_read_STAR] = ACTIONS(429), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(429), + }, + [60] = { + [sym_shebangComment] = STATE(60), + [sym_lineComment] = STATE(60), + [sym_identifier] = ACTIONS(431), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(431), + [anon_sym_import] = ACTIONS(431), + [anon_sym_as] = ACTIONS(431), + [anon_sym_import_STAR] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_function] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_RBRACK] = ACTIONS(433), + [anon_sym_LBRACK_LBRACK] = ACTIONS(433), + [anon_sym_for] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_when] = ACTIONS(431), + [anon_sym_else] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(433), + [anon_sym_STAR] = ACTIONS(431), + [anon_sym_LT] = ACTIONS(431), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_external] = ACTIONS(431), + [anon_sym_abstract] = ACTIONS(431), + [anon_sym_open] = ACTIONS(431), + [anon_sym_local] = ACTIONS(431), + [anon_sym_hidden] = ACTIONS(431), + [anon_sym_fixed] = ACTIONS(431), + [anon_sym_const] = ACTIONS(431), + [sym_thisExpr] = ACTIONS(431), + [sym_outerExpr] = ACTIONS(431), + [sym_nullLiteral] = ACTIONS(431), + [sym_trueLiteral] = ACTIONS(431), + [sym_falseLiteral] = ACTIONS(431), + [sym_intLiteral] = ACTIONS(431), + [sym_floatLiteral] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(431), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(431), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(433), + [anon_sym_new] = ACTIONS(431), + [anon_sym_super] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(431), + [anon_sym_QMARK_DOT] = ACTIONS(433), + [anon_sym_BANG_BANG] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_STAR_STAR] = ACTIONS(433), + [anon_sym_QMARK_QMARK] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_TILDE_SLASH] = ACTIONS(433), + [anon_sym_PERCENT] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(433), + [anon_sym_PIPE_PIPE] = ACTIONS(433), + [anon_sym_PIPE_GT] = ACTIONS(433), + [anon_sym_is] = ACTIONS(431), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(431), + [anon_sym_trace] = ACTIONS(431), + [anon_sym_read] = ACTIONS(431), + [anon_sym_read_QMARK] = ACTIONS(433), + [anon_sym_read_STAR] = ACTIONS(433), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(433), + }, [61] = { [sym_shebangComment] = STATE(61), [sym_lineComment] = STATE(61), - [sym_identifier] = ACTIONS(429), + [sym_identifier] = ACTIONS(435), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(429), - [anon_sym_import] = ACTIONS(429), - [anon_sym_as] = ACTIONS(429), - [anon_sym_import_STAR] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(429), - [anon_sym_RBRACK] = ACTIONS(431), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [anon_sym_for] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(431), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_RPAREN] = ACTIONS(431), - [anon_sym_when] = ACTIONS(429), - [anon_sym_else] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(431), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_external] = ACTIONS(429), - [anon_sym_abstract] = ACTIONS(429), - [anon_sym_open] = ACTIONS(429), - [anon_sym_local] = ACTIONS(429), - [anon_sym_hidden] = ACTIONS(429), - [anon_sym_fixed] = ACTIONS(429), - [anon_sym_const] = ACTIONS(429), - [sym_thisExpr] = ACTIONS(429), - [sym_outerExpr] = ACTIONS(429), - [sym_nullLiteral] = ACTIONS(429), - [sym_trueLiteral] = ACTIONS(429), - [sym_falseLiteral] = ACTIONS(429), - [sym_intLiteral] = ACTIONS(429), - [sym_floatLiteral] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_POUND_DQUOTE] = ACTIONS(429), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(429), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(429), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(429), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(429), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(429), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(431), - [anon_sym_new] = ACTIONS(429), - [anon_sym_super] = ACTIONS(429), - [anon_sym_DOT] = ACTIONS(429), - [anon_sym_QMARK_DOT] = ACTIONS(431), - [anon_sym_BANG_BANG] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(429), - [anon_sym_STAR_STAR] = ACTIONS(431), - [anon_sym_QMARK_QMARK] = ACTIONS(431), - [anon_sym_SLASH] = ACTIONS(429), - [anon_sym_TILDE_SLASH] = ACTIONS(431), - [anon_sym_PERCENT] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(431), - [anon_sym_LT_EQ] = ACTIONS(431), - [anon_sym_GT_EQ] = ACTIONS(431), - [anon_sym_EQ_EQ] = ACTIONS(431), - [anon_sym_BANG_EQ] = ACTIONS(431), - [anon_sym_AMP_AMP] = ACTIONS(431), - [anon_sym_PIPE_PIPE] = ACTIONS(431), - [anon_sym_PIPE_GT] = ACTIONS(431), - [anon_sym_is] = ACTIONS(429), - [anon_sym_if] = ACTIONS(429), - [anon_sym_let] = ACTIONS(429), - [anon_sym_throw] = ACTIONS(429), - [anon_sym_trace] = ACTIONS(429), - [anon_sym_read] = ACTIONS(429), - [anon_sym_read_QMARK] = ACTIONS(431), - [anon_sym_read_STAR] = ACTIONS(431), + [anon_sym_module] = ACTIONS(435), + [anon_sym_import] = ACTIONS(435), + [anon_sym_as] = ACTIONS(435), + [anon_sym_import_STAR] = ACTIONS(437), + [anon_sym_LBRACE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_function] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_RBRACK] = ACTIONS(437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_for] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(437), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_RPAREN] = ACTIONS(437), + [anon_sym_when] = ACTIONS(435), + [anon_sym_else] = ACTIONS(435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(435), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_external] = ACTIONS(435), + [anon_sym_abstract] = ACTIONS(435), + [anon_sym_open] = ACTIONS(435), + [anon_sym_local] = ACTIONS(435), + [anon_sym_hidden] = ACTIONS(435), + [anon_sym_fixed] = ACTIONS(435), + [anon_sym_const] = ACTIONS(435), + [sym_thisExpr] = ACTIONS(435), + [sym_outerExpr] = ACTIONS(435), + [sym_nullLiteral] = ACTIONS(435), + [sym_trueLiteral] = ACTIONS(435), + [sym_falseLiteral] = ACTIONS(435), + [sym_intLiteral] = ACTIONS(435), + [sym_floatLiteral] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(435), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(435), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), + [anon_sym_new] = ACTIONS(435), + [anon_sym_super] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_QMARK_DOT] = ACTIONS(437), + [anon_sym_BANG_BANG] = ACTIONS(437), + [anon_sym_DASH] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(437), + [anon_sym_QMARK_QMARK] = ACTIONS(437), + [anon_sym_SLASH] = ACTIONS(435), + [anon_sym_TILDE_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(437), + [anon_sym_LT_EQ] = ACTIONS(437), + [anon_sym_GT_EQ] = ACTIONS(437), + [anon_sym_EQ_EQ] = ACTIONS(437), + [anon_sym_BANG_EQ] = ACTIONS(437), + [anon_sym_AMP_AMP] = ACTIONS(437), + [anon_sym_PIPE_PIPE] = ACTIONS(437), + [anon_sym_PIPE_GT] = ACTIONS(437), + [anon_sym_is] = ACTIONS(435), + [anon_sym_if] = ACTIONS(435), + [anon_sym_let] = ACTIONS(435), + [anon_sym_throw] = ACTIONS(435), + [anon_sym_trace] = ACTIONS(435), + [anon_sym_read] = ACTIONS(435), + [anon_sym_read_QMARK] = ACTIONS(437), + [anon_sym_read_STAR] = ACTIONS(437), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(431), + [sym__open_subscript_bracket] = ACTIONS(437), }, [62] = { [sym_shebangComment] = STATE(62), [sym_lineComment] = STATE(62), - [sym_identifier] = ACTIONS(433), + [sym_identifier] = ACTIONS(439), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(433), - [anon_sym_import] = ACTIONS(433), - [anon_sym_as] = ACTIONS(433), - [anon_sym_import_STAR] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_function] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_RBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_for] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_RPAREN] = ACTIONS(435), - [anon_sym_when] = ACTIONS(433), - [anon_sym_else] = ACTIONS(433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(433), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_external] = ACTIONS(433), - [anon_sym_abstract] = ACTIONS(433), - [anon_sym_open] = ACTIONS(433), - [anon_sym_local] = ACTIONS(433), - [anon_sym_hidden] = ACTIONS(433), - [anon_sym_fixed] = ACTIONS(433), - [anon_sym_const] = ACTIONS(433), - [sym_thisExpr] = ACTIONS(433), - [sym_outerExpr] = ACTIONS(433), - [sym_nullLiteral] = ACTIONS(433), - [sym_trueLiteral] = ACTIONS(433), - [sym_falseLiteral] = ACTIONS(433), - [sym_intLiteral] = ACTIONS(433), - [sym_floatLiteral] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(433), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(435), - [anon_sym_new] = ACTIONS(433), - [anon_sym_super] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(433), - [anon_sym_QMARK_DOT] = ACTIONS(435), - [anon_sym_BANG_BANG] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_STAR_STAR] = ACTIONS(435), - [anon_sym_QMARK_QMARK] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(433), - [anon_sym_TILDE_SLASH] = ACTIONS(435), - [anon_sym_PERCENT] = ACTIONS(435), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_LT_EQ] = ACTIONS(435), - [anon_sym_GT_EQ] = ACTIONS(435), - [anon_sym_EQ_EQ] = ACTIONS(435), - [anon_sym_BANG_EQ] = ACTIONS(435), - [anon_sym_AMP_AMP] = ACTIONS(435), - [anon_sym_PIPE_PIPE] = ACTIONS(435), - [anon_sym_PIPE_GT] = ACTIONS(435), - [anon_sym_is] = ACTIONS(433), - [anon_sym_if] = ACTIONS(433), - [anon_sym_let] = ACTIONS(433), - [anon_sym_throw] = ACTIONS(433), - [anon_sym_trace] = ACTIONS(433), - [anon_sym_read] = ACTIONS(433), - [anon_sym_read_QMARK] = ACTIONS(435), - [anon_sym_read_STAR] = ACTIONS(435), + [anon_sym_module] = ACTIONS(439), + [anon_sym_import] = ACTIONS(439), + [anon_sym_as] = ACTIONS(439), + [anon_sym_import_STAR] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_function] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_RBRACK] = ACTIONS(441), + [anon_sym_LBRACK_LBRACK] = ACTIONS(441), + [anon_sym_for] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(441), + [anon_sym_when] = ACTIONS(439), + [anon_sym_else] = ACTIONS(439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(439), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_external] = ACTIONS(439), + [anon_sym_abstract] = ACTIONS(439), + [anon_sym_open] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_hidden] = ACTIONS(439), + [anon_sym_fixed] = ACTIONS(439), + [anon_sym_const] = ACTIONS(439), + [sym_thisExpr] = ACTIONS(439), + [sym_outerExpr] = ACTIONS(439), + [sym_nullLiteral] = ACTIONS(439), + [sym_trueLiteral] = ACTIONS(439), + [sym_falseLiteral] = ACTIONS(439), + [sym_intLiteral] = ACTIONS(439), + [sym_floatLiteral] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_POUND_DQUOTE] = ACTIONS(439), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(439), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(439), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(439), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(439), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(439), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_new] = ACTIONS(439), + [anon_sym_super] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(439), + [anon_sym_QMARK_DOT] = ACTIONS(441), + [anon_sym_BANG_BANG] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_STAR_STAR] = ACTIONS(441), + [anon_sym_QMARK_QMARK] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_TILDE_SLASH] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_LT_EQ] = ACTIONS(441), + [anon_sym_GT_EQ] = ACTIONS(441), + [anon_sym_EQ_EQ] = ACTIONS(441), + [anon_sym_BANG_EQ] = ACTIONS(441), + [anon_sym_AMP_AMP] = ACTIONS(441), + [anon_sym_PIPE_PIPE] = ACTIONS(441), + [anon_sym_PIPE_GT] = ACTIONS(441), + [anon_sym_is] = ACTIONS(439), + [anon_sym_if] = ACTIONS(439), + [anon_sym_let] = ACTIONS(439), + [anon_sym_throw] = ACTIONS(439), + [anon_sym_trace] = ACTIONS(439), + [anon_sym_read] = ACTIONS(439), + [anon_sym_read_QMARK] = ACTIONS(441), + [anon_sym_read_STAR] = ACTIONS(441), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(435), + [sym__open_subscript_bracket] = ACTIONS(441), }, [63] = { [sym_shebangComment] = STATE(63), [sym_lineComment] = STATE(63), - [sym_identifier] = ACTIONS(437), + [sym_identifier] = ACTIONS(443), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(437), - [anon_sym_import] = ACTIONS(437), - [anon_sym_as] = ACTIONS(437), - [anon_sym_import_STAR] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_function] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_RBRACK] = ACTIONS(439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_for] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_RPAREN] = ACTIONS(439), - [anon_sym_when] = ACTIONS(437), - [anon_sym_else] = ACTIONS(437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(437), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_external] = ACTIONS(437), - [anon_sym_abstract] = ACTIONS(437), - [anon_sym_open] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_hidden] = ACTIONS(437), - [anon_sym_fixed] = ACTIONS(437), - [anon_sym_const] = ACTIONS(437), - [sym_thisExpr] = ACTIONS(437), - [sym_outerExpr] = ACTIONS(437), - [sym_nullLiteral] = ACTIONS(437), - [sym_trueLiteral] = ACTIONS(437), - [sym_falseLiteral] = ACTIONS(437), - [sym_intLiteral] = ACTIONS(437), - [sym_floatLiteral] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND_DQUOTE] = ACTIONS(437), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(437), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(437), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(437), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(437), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(439), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(439), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(439), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(439), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(439), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(439), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(439), - [anon_sym_new] = ACTIONS(437), - [anon_sym_super] = ACTIONS(437), - [anon_sym_DOT] = ACTIONS(437), - [anon_sym_QMARK_DOT] = ACTIONS(439), - [anon_sym_BANG_BANG] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_STAR_STAR] = ACTIONS(439), - [anon_sym_QMARK_QMARK] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_TILDE_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [anon_sym_PIPE_GT] = ACTIONS(439), - [anon_sym_is] = ACTIONS(437), - [anon_sym_if] = ACTIONS(437), - [anon_sym_let] = ACTIONS(437), - [anon_sym_throw] = ACTIONS(437), - [anon_sym_trace] = ACTIONS(437), - [anon_sym_read] = ACTIONS(437), - [anon_sym_read_QMARK] = ACTIONS(439), - [anon_sym_read_STAR] = ACTIONS(439), + [anon_sym_module] = ACTIONS(443), + [anon_sym_import] = ACTIONS(443), + [anon_sym_as] = ACTIONS(443), + [anon_sym_import_STAR] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_function] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_RBRACK] = ACTIONS(445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(445), + [anon_sym_for] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_COMMA] = ACTIONS(445), + [anon_sym_RPAREN] = ACTIONS(445), + [anon_sym_when] = ACTIONS(443), + [anon_sym_else] = ACTIONS(443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(443), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_GT] = ACTIONS(443), + [anon_sym_external] = ACTIONS(443), + [anon_sym_abstract] = ACTIONS(443), + [anon_sym_open] = ACTIONS(443), + [anon_sym_local] = ACTIONS(443), + [anon_sym_hidden] = ACTIONS(443), + [anon_sym_fixed] = ACTIONS(443), + [anon_sym_const] = ACTIONS(443), + [sym_thisExpr] = ACTIONS(443), + [sym_outerExpr] = ACTIONS(443), + [sym_nullLiteral] = ACTIONS(443), + [sym_trueLiteral] = ACTIONS(443), + [sym_falseLiteral] = ACTIONS(443), + [sym_intLiteral] = ACTIONS(443), + [sym_floatLiteral] = ACTIONS(445), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_POUND_DQUOTE] = ACTIONS(443), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(443), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(443), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(443), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(443), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(443), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(445), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(445), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(445), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(445), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(445), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(445), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(445), + [anon_sym_new] = ACTIONS(443), + [anon_sym_super] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_QMARK_DOT] = ACTIONS(445), + [anon_sym_BANG_BANG] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_QMARK_QMARK] = ACTIONS(445), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(445), + [anon_sym_PERCENT] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PIPE_GT] = ACTIONS(445), + [anon_sym_is] = ACTIONS(443), + [anon_sym_if] = ACTIONS(443), + [anon_sym_let] = ACTIONS(443), + [anon_sym_throw] = ACTIONS(443), + [anon_sym_trace] = ACTIONS(443), + [anon_sym_read] = ACTIONS(443), + [anon_sym_read_QMARK] = ACTIONS(445), + [anon_sym_read_STAR] = ACTIONS(445), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(439), + [sym__open_subscript_bracket] = ACTIONS(445), }, [64] = { [sym_shebangComment] = STATE(64), [sym_lineComment] = STATE(64), - [sym_identifier] = ACTIONS(441), + [sym_identifier] = ACTIONS(447), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(441), - [anon_sym_import] = ACTIONS(441), - [anon_sym_as] = ACTIONS(441), - [anon_sym_import_STAR] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_RBRACK] = ACTIONS(443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(443), - [anon_sym_for] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_COMMA] = ACTIONS(443), - [anon_sym_RPAREN] = ACTIONS(443), - [anon_sym_when] = ACTIONS(441), - [anon_sym_else] = ACTIONS(441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(441), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(443), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_external] = ACTIONS(441), - [anon_sym_abstract] = ACTIONS(441), - [anon_sym_open] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_hidden] = ACTIONS(441), - [anon_sym_fixed] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [sym_thisExpr] = ACTIONS(441), - [sym_outerExpr] = ACTIONS(441), - [sym_nullLiteral] = ACTIONS(441), - [sym_trueLiteral] = ACTIONS(441), - [sym_falseLiteral] = ACTIONS(441), - [sym_intLiteral] = ACTIONS(441), - [sym_floatLiteral] = ACTIONS(443), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_POUND_DQUOTE] = ACTIONS(441), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(441), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(441), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(441), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(441), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(443), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(443), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(443), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(443), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(443), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(443), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(443), - [anon_sym_new] = ACTIONS(441), - [anon_sym_super] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_QMARK_DOT] = ACTIONS(443), - [anon_sym_BANG_BANG] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(443), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_QMARK_QMARK] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_TILDE_SLASH] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(443), - [anon_sym_LT_EQ] = ACTIONS(443), - [anon_sym_GT_EQ] = ACTIONS(443), - [anon_sym_EQ_EQ] = ACTIONS(443), - [anon_sym_BANG_EQ] = ACTIONS(443), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE_GT] = ACTIONS(443), - [anon_sym_is] = ACTIONS(441), - [anon_sym_if] = ACTIONS(441), - [anon_sym_let] = ACTIONS(441), - [anon_sym_throw] = ACTIONS(441), - [anon_sym_trace] = ACTIONS(441), - [anon_sym_read] = ACTIONS(441), - [anon_sym_read_QMARK] = ACTIONS(443), - [anon_sym_read_STAR] = ACTIONS(443), + [anon_sym_module] = ACTIONS(447), + [anon_sym_import] = ACTIONS(447), + [anon_sym_as] = ACTIONS(447), + [anon_sym_import_STAR] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_function] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_RBRACK] = ACTIONS(449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_for] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(449), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_when] = ACTIONS(447), + [anon_sym_else] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_external] = ACTIONS(447), + [anon_sym_abstract] = ACTIONS(447), + [anon_sym_open] = ACTIONS(447), + [anon_sym_local] = ACTIONS(447), + [anon_sym_hidden] = ACTIONS(447), + [anon_sym_fixed] = ACTIONS(447), + [anon_sym_const] = ACTIONS(447), + [sym_thisExpr] = ACTIONS(447), + [sym_outerExpr] = ACTIONS(447), + [sym_nullLiteral] = ACTIONS(447), + [sym_trueLiteral] = ACTIONS(447), + [sym_falseLiteral] = ACTIONS(447), + [sym_intLiteral] = ACTIONS(447), + [sym_floatLiteral] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(447), + [anon_sym_POUND_DQUOTE] = ACTIONS(447), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(447), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(447), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(447), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(447), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(449), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(449), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(449), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(449), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(449), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(449), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(449), + [anon_sym_new] = ACTIONS(447), + [anon_sym_super] = ACTIONS(447), + [anon_sym_DOT] = ACTIONS(447), + [anon_sym_QMARK_DOT] = ACTIONS(449), + [anon_sym_BANG_BANG] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_STAR_STAR] = ACTIONS(449), + [anon_sym_QMARK_QMARK] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_TILDE_SLASH] = ACTIONS(449), + [anon_sym_PERCENT] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(449), + [anon_sym_PIPE_PIPE] = ACTIONS(449), + [anon_sym_PIPE_GT] = ACTIONS(449), + [anon_sym_is] = ACTIONS(447), + [anon_sym_if] = ACTIONS(447), + [anon_sym_let] = ACTIONS(447), + [anon_sym_throw] = ACTIONS(447), + [anon_sym_trace] = ACTIONS(447), + [anon_sym_read] = ACTIONS(447), + [anon_sym_read_QMARK] = ACTIONS(449), + [anon_sym_read_STAR] = ACTIONS(449), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(443), + [sym__open_subscript_bracket] = ACTIONS(449), }, [65] = { [sym_shebangComment] = STATE(65), [sym_lineComment] = STATE(65), - [sym_identifier] = ACTIONS(445), + [sym_identifier] = ACTIONS(451), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(445), - [anon_sym_import] = ACTIONS(445), - [anon_sym_as] = ACTIONS(445), - [anon_sym_import_STAR] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_function] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(445), - [anon_sym_RBRACK] = ACTIONS(447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(447), - [anon_sym_for] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_COMMA] = ACTIONS(447), - [anon_sym_RPAREN] = ACTIONS(447), - [anon_sym_when] = ACTIONS(445), - [anon_sym_else] = ACTIONS(445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_GT] = ACTIONS(445), - [anon_sym_external] = ACTIONS(445), - [anon_sym_abstract] = ACTIONS(445), - [anon_sym_open] = ACTIONS(445), - [anon_sym_local] = ACTIONS(445), - [anon_sym_hidden] = ACTIONS(445), - [anon_sym_fixed] = ACTIONS(445), - [anon_sym_const] = ACTIONS(445), - [sym_thisExpr] = ACTIONS(445), - [sym_outerExpr] = ACTIONS(445), - [sym_nullLiteral] = ACTIONS(445), - [sym_trueLiteral] = ACTIONS(445), - [sym_falseLiteral] = ACTIONS(445), - [sym_intLiteral] = ACTIONS(445), - [sym_floatLiteral] = ACTIONS(447), - [anon_sym_DQUOTE] = ACTIONS(445), - [anon_sym_POUND_DQUOTE] = ACTIONS(445), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(445), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(445), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(445), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(445), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(447), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(447), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(447), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(447), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(447), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(447), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(447), - [anon_sym_new] = ACTIONS(445), - [anon_sym_super] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(445), - [anon_sym_QMARK_DOT] = ACTIONS(447), - [anon_sym_BANG_BANG] = ACTIONS(447), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_STAR_STAR] = ACTIONS(447), - [anon_sym_QMARK_QMARK] = ACTIONS(447), - [anon_sym_SLASH] = ACTIONS(445), - [anon_sym_TILDE_SLASH] = ACTIONS(447), - [anon_sym_PERCENT] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(447), - [anon_sym_BANG_EQ] = ACTIONS(447), - [anon_sym_AMP_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(447), - [anon_sym_PIPE_GT] = ACTIONS(447), - [anon_sym_is] = ACTIONS(445), - [anon_sym_if] = ACTIONS(445), - [anon_sym_let] = ACTIONS(445), - [anon_sym_throw] = ACTIONS(445), - [anon_sym_trace] = ACTIONS(445), - [anon_sym_read] = ACTIONS(445), - [anon_sym_read_QMARK] = ACTIONS(447), - [anon_sym_read_STAR] = ACTIONS(447), + [anon_sym_module] = ACTIONS(451), + [anon_sym_import] = ACTIONS(451), + [anon_sym_as] = ACTIONS(451), + [anon_sym_import_STAR] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_RBRACK] = ACTIONS(453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(453), + [anon_sym_for] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_COMMA] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(453), + [anon_sym_when] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(453), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_external] = ACTIONS(451), + [anon_sym_abstract] = ACTIONS(451), + [anon_sym_open] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_hidden] = ACTIONS(451), + [anon_sym_fixed] = ACTIONS(451), + [anon_sym_const] = ACTIONS(451), + [sym_thisExpr] = ACTIONS(451), + [sym_outerExpr] = ACTIONS(451), + [sym_nullLiteral] = ACTIONS(451), + [sym_trueLiteral] = ACTIONS(451), + [sym_falseLiteral] = ACTIONS(451), + [sym_intLiteral] = ACTIONS(451), + [sym_floatLiteral] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(451), + [anon_sym_POUND_DQUOTE] = ACTIONS(451), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(451), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(451), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(451), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(451), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(453), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(453), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(453), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(453), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(453), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(453), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(453), + [anon_sym_new] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(451), + [anon_sym_QMARK_DOT] = ACTIONS(453), + [anon_sym_BANG_BANG] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_STAR_STAR] = ACTIONS(453), + [anon_sym_QMARK_QMARK] = ACTIONS(453), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_TILDE_SLASH] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE_GT] = ACTIONS(453), + [anon_sym_is] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_let] = ACTIONS(451), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_trace] = ACTIONS(451), + [anon_sym_read] = ACTIONS(451), + [anon_sym_read_QMARK] = ACTIONS(453), + [anon_sym_read_STAR] = ACTIONS(453), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(447), + [sym__open_subscript_bracket] = ACTIONS(453), }, [66] = { [sym_shebangComment] = STATE(66), [sym_lineComment] = STATE(66), - [sym_identifier] = ACTIONS(449), + [sym_identifier] = ACTIONS(455), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(449), - [anon_sym_import] = ACTIONS(449), - [anon_sym_as] = ACTIONS(449), - [anon_sym_import_STAR] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_function] = ACTIONS(449), - [anon_sym_LBRACK] = ACTIONS(449), - [anon_sym_RBRACK] = ACTIONS(451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(451), - [anon_sym_for] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(451), - [anon_sym_RPAREN] = ACTIONS(451), - [anon_sym_when] = ACTIONS(449), - [anon_sym_else] = ACTIONS(449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(449), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(451), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(449), - [anon_sym_external] = ACTIONS(449), - [anon_sym_abstract] = ACTIONS(449), - [anon_sym_open] = ACTIONS(449), - [anon_sym_local] = ACTIONS(449), - [anon_sym_hidden] = ACTIONS(449), - [anon_sym_fixed] = ACTIONS(449), - [anon_sym_const] = ACTIONS(449), - [sym_thisExpr] = ACTIONS(449), - [sym_outerExpr] = ACTIONS(449), - [sym_nullLiteral] = ACTIONS(449), - [sym_trueLiteral] = ACTIONS(449), - [sym_falseLiteral] = ACTIONS(449), - [sym_intLiteral] = ACTIONS(449), - [sym_floatLiteral] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(449), - [anon_sym_POUND_DQUOTE] = ACTIONS(449), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(449), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(449), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(449), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(449), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(451), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(451), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(451), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(451), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(451), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(451), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(451), - [anon_sym_new] = ACTIONS(449), - [anon_sym_super] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_QMARK_DOT] = ACTIONS(451), - [anon_sym_BANG_BANG] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(449), - [anon_sym_STAR_STAR] = ACTIONS(451), - [anon_sym_QMARK_QMARK] = ACTIONS(451), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_TILDE_SLASH] = ACTIONS(451), - [anon_sym_PERCENT] = ACTIONS(451), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(451), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_PIPE_GT] = ACTIONS(451), - [anon_sym_is] = ACTIONS(449), - [anon_sym_if] = ACTIONS(449), - [anon_sym_let] = ACTIONS(449), - [anon_sym_throw] = ACTIONS(449), - [anon_sym_trace] = ACTIONS(449), - [anon_sym_read] = ACTIONS(449), - [anon_sym_read_QMARK] = ACTIONS(451), - [anon_sym_read_STAR] = ACTIONS(451), + [anon_sym_module] = ACTIONS(455), + [anon_sym_import] = ACTIONS(455), + [anon_sym_as] = ACTIONS(455), + [anon_sym_import_STAR] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_RBRACE] = ACTIONS(457), + [anon_sym_function] = ACTIONS(455), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_RBRACK] = ACTIONS(457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(457), + [anon_sym_for] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(457), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_RPAREN] = ACTIONS(457), + [anon_sym_when] = ACTIONS(455), + [anon_sym_else] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(457), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(455), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_external] = ACTIONS(455), + [anon_sym_abstract] = ACTIONS(455), + [anon_sym_open] = ACTIONS(455), + [anon_sym_local] = ACTIONS(455), + [anon_sym_hidden] = ACTIONS(455), + [anon_sym_fixed] = ACTIONS(455), + [anon_sym_const] = ACTIONS(455), + [sym_thisExpr] = ACTIONS(455), + [sym_outerExpr] = ACTIONS(455), + [sym_nullLiteral] = ACTIONS(455), + [sym_trueLiteral] = ACTIONS(455), + [sym_falseLiteral] = ACTIONS(455), + [sym_intLiteral] = ACTIONS(455), + [sym_floatLiteral] = ACTIONS(457), + [anon_sym_DQUOTE] = ACTIONS(455), + [anon_sym_POUND_DQUOTE] = ACTIONS(455), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(455), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(455), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(455), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(455), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(457), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(457), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(457), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(457), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(457), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(457), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(457), + [anon_sym_new] = ACTIONS(455), + [anon_sym_super] = ACTIONS(455), + [anon_sym_DOT] = ACTIONS(455), + [anon_sym_QMARK_DOT] = ACTIONS(457), + [anon_sym_BANG_BANG] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_QMARK_QMARK] = ACTIONS(457), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_TILDE_SLASH] = ACTIONS(457), + [anon_sym_PERCENT] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_PIPE_GT] = ACTIONS(457), + [anon_sym_is] = ACTIONS(455), + [anon_sym_if] = ACTIONS(455), + [anon_sym_let] = ACTIONS(455), + [anon_sym_throw] = ACTIONS(455), + [anon_sym_trace] = ACTIONS(455), + [anon_sym_read] = ACTIONS(455), + [anon_sym_read_QMARK] = ACTIONS(457), + [anon_sym_read_STAR] = ACTIONS(457), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(451), + [sym__open_subscript_bracket] = ACTIONS(457), }, [67] = { [sym_shebangComment] = STATE(67), [sym_lineComment] = STATE(67), - [sym_identifier] = ACTIONS(453), + [sym_identifier] = ACTIONS(459), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(453), - [anon_sym_import] = ACTIONS(453), - [anon_sym_as] = ACTIONS(453), - [anon_sym_import_STAR] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_function] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_RBRACK] = ACTIONS(455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(455), - [anon_sym_for] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(455), - [anon_sym_COMMA] = ACTIONS(455), - [anon_sym_RPAREN] = ACTIONS(455), - [anon_sym_when] = ACTIONS(453), - [anon_sym_else] = ACTIONS(453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(455), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_external] = ACTIONS(453), - [anon_sym_abstract] = ACTIONS(453), - [anon_sym_open] = ACTIONS(453), - [anon_sym_local] = ACTIONS(453), - [anon_sym_hidden] = ACTIONS(453), - [anon_sym_fixed] = ACTIONS(453), - [anon_sym_const] = ACTIONS(453), - [sym_thisExpr] = ACTIONS(453), - [sym_outerExpr] = ACTIONS(453), - [sym_nullLiteral] = ACTIONS(453), - [sym_trueLiteral] = ACTIONS(453), - [sym_falseLiteral] = ACTIONS(453), - [sym_intLiteral] = ACTIONS(453), - [sym_floatLiteral] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_POUND_DQUOTE] = ACTIONS(453), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(453), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(453), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(453), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(453), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(455), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(455), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(455), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(455), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(455), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(455), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(455), - [anon_sym_new] = ACTIONS(453), - [anon_sym_super] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_QMARK_DOT] = ACTIONS(455), - [anon_sym_BANG_BANG] = ACTIONS(455), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(453), - [anon_sym_STAR_STAR] = ACTIONS(455), - [anon_sym_QMARK_QMARK] = ACTIONS(455), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_TILDE_SLASH] = ACTIONS(455), - [anon_sym_PERCENT] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_LT_EQ] = ACTIONS(455), - [anon_sym_GT_EQ] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_BANG_EQ] = ACTIONS(455), - [anon_sym_AMP_AMP] = ACTIONS(455), - [anon_sym_PIPE_PIPE] = ACTIONS(455), - [anon_sym_PIPE_GT] = ACTIONS(455), - [anon_sym_is] = ACTIONS(453), - [anon_sym_if] = ACTIONS(453), - [anon_sym_let] = ACTIONS(453), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_trace] = ACTIONS(453), - [anon_sym_read] = ACTIONS(453), - [anon_sym_read_QMARK] = ACTIONS(455), - [anon_sym_read_STAR] = ACTIONS(455), + [anon_sym_module] = ACTIONS(459), + [anon_sym_import] = ACTIONS(459), + [anon_sym_as] = ACTIONS(459), + [anon_sym_import_STAR] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_function] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(459), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(461), + [anon_sym_for] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_when] = ACTIONS(459), + [anon_sym_else] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_external] = ACTIONS(459), + [anon_sym_abstract] = ACTIONS(459), + [anon_sym_open] = ACTIONS(459), + [anon_sym_local] = ACTIONS(459), + [anon_sym_hidden] = ACTIONS(459), + [anon_sym_fixed] = ACTIONS(459), + [anon_sym_const] = ACTIONS(459), + [sym_thisExpr] = ACTIONS(459), + [sym_outerExpr] = ACTIONS(459), + [sym_nullLiteral] = ACTIONS(459), + [sym_trueLiteral] = ACTIONS(459), + [sym_falseLiteral] = ACTIONS(459), + [sym_intLiteral] = ACTIONS(459), + [sym_floatLiteral] = ACTIONS(461), + [anon_sym_DQUOTE] = ACTIONS(459), + [anon_sym_POUND_DQUOTE] = ACTIONS(459), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(459), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(459), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(459), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(459), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), + [anon_sym_new] = ACTIONS(459), + [anon_sym_super] = ACTIONS(459), + [anon_sym_DOT] = ACTIONS(459), + [anon_sym_QMARK_DOT] = ACTIONS(461), + [anon_sym_BANG_BANG] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_STAR_STAR] = ACTIONS(461), + [anon_sym_QMARK_QMARK] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(459), + [anon_sym_TILDE_SLASH] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(461), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_PIPE_GT] = ACTIONS(461), + [anon_sym_is] = ACTIONS(459), + [anon_sym_if] = ACTIONS(459), + [anon_sym_let] = ACTIONS(459), + [anon_sym_throw] = ACTIONS(459), + [anon_sym_trace] = ACTIONS(459), + [anon_sym_read] = ACTIONS(459), + [anon_sym_read_QMARK] = ACTIONS(461), + [anon_sym_read_STAR] = ACTIONS(461), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(455), + [sym__open_subscript_bracket] = ACTIONS(461), }, [68] = { [sym_shebangComment] = STATE(68), [sym_lineComment] = STATE(68), - [sym_identifier] = ACTIONS(457), + [sym_identifier] = ACTIONS(463), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(457), - [anon_sym_import] = ACTIONS(457), - [anon_sym_as] = ACTIONS(457), - [anon_sym_import_STAR] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(459), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_function] = ACTIONS(457), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(459), - [anon_sym_for] = ACTIONS(457), - [anon_sym_LPAREN] = ACTIONS(459), - [anon_sym_COMMA] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(459), - [anon_sym_when] = ACTIONS(457), - [anon_sym_else] = ACTIONS(457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(457), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_external] = ACTIONS(457), - [anon_sym_abstract] = ACTIONS(457), - [anon_sym_open] = ACTIONS(457), - [anon_sym_local] = ACTIONS(457), - [anon_sym_hidden] = ACTIONS(457), - [anon_sym_fixed] = ACTIONS(457), - [anon_sym_const] = ACTIONS(457), - [sym_thisExpr] = ACTIONS(457), - [sym_outerExpr] = ACTIONS(457), - [sym_nullLiteral] = ACTIONS(457), - [sym_trueLiteral] = ACTIONS(457), - [sym_falseLiteral] = ACTIONS(457), - [sym_intLiteral] = ACTIONS(457), - [sym_floatLiteral] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(457), - [anon_sym_POUND_DQUOTE] = ACTIONS(457), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(457), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(457), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(457), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(457), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(457), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(459), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(459), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(459), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(459), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(459), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(459), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(459), - [anon_sym_new] = ACTIONS(457), - [anon_sym_super] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(457), - [anon_sym_QMARK_DOT] = ACTIONS(459), - [anon_sym_BANG_BANG] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_STAR_STAR] = ACTIONS(459), - [anon_sym_QMARK_QMARK] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(457), - [anon_sym_TILDE_SLASH] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE_GT] = ACTIONS(459), - [anon_sym_is] = ACTIONS(457), - [anon_sym_if] = ACTIONS(457), - [anon_sym_let] = ACTIONS(457), - [anon_sym_throw] = ACTIONS(457), - [anon_sym_trace] = ACTIONS(457), - [anon_sym_read] = ACTIONS(457), - [anon_sym_read_QMARK] = ACTIONS(459), - [anon_sym_read_STAR] = ACTIONS(459), + [anon_sym_module] = ACTIONS(463), + [anon_sym_import] = ACTIONS(463), + [anon_sym_as] = ACTIONS(463), + [anon_sym_import_STAR] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_function] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_LBRACK_LBRACK] = ACTIONS(465), + [anon_sym_for] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_when] = ACTIONS(463), + [anon_sym_else] = ACTIONS(463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(463), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_external] = ACTIONS(463), + [anon_sym_abstract] = ACTIONS(463), + [anon_sym_open] = ACTIONS(463), + [anon_sym_local] = ACTIONS(463), + [anon_sym_hidden] = ACTIONS(463), + [anon_sym_fixed] = ACTIONS(463), + [anon_sym_const] = ACTIONS(463), + [sym_thisExpr] = ACTIONS(463), + [sym_outerExpr] = ACTIONS(463), + [sym_nullLiteral] = ACTIONS(463), + [sym_trueLiteral] = ACTIONS(463), + [sym_falseLiteral] = ACTIONS(463), + [sym_intLiteral] = ACTIONS(463), + [sym_floatLiteral] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(463), + [anon_sym_POUND_DQUOTE] = ACTIONS(463), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(463), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(463), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(463), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(463), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(463), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_new] = ACTIONS(463), + [anon_sym_super] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(463), + [anon_sym_QMARK_DOT] = ACTIONS(465), + [anon_sym_BANG_BANG] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_STAR_STAR] = ACTIONS(465), + [anon_sym_QMARK_QMARK] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(463), + [anon_sym_TILDE_SLASH] = ACTIONS(465), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(465), + [anon_sym_PIPE_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_let] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(463), + [anon_sym_trace] = ACTIONS(463), + [anon_sym_read] = ACTIONS(463), + [anon_sym_read_QMARK] = ACTIONS(465), + [anon_sym_read_STAR] = ACTIONS(465), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(459), + [sym__open_subscript_bracket] = ACTIONS(465), }, [69] = { [sym_shebangComment] = STATE(69), [sym_lineComment] = STATE(69), - [sym_identifier] = ACTIONS(461), + [sym_identifier] = ACTIONS(467), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(461), - [anon_sym_import] = ACTIONS(461), - [anon_sym_as] = ACTIONS(461), - [anon_sym_import_STAR] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_function] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_RBRACK] = ACTIONS(463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(463), - [anon_sym_for] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_RPAREN] = ACTIONS(463), - [anon_sym_when] = ACTIONS(461), - [anon_sym_else] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(463), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_external] = ACTIONS(461), - [anon_sym_abstract] = ACTIONS(461), - [anon_sym_open] = ACTIONS(461), - [anon_sym_local] = ACTIONS(461), - [anon_sym_hidden] = ACTIONS(461), - [anon_sym_fixed] = ACTIONS(461), - [anon_sym_const] = ACTIONS(461), - [sym_thisExpr] = ACTIONS(461), - [sym_outerExpr] = ACTIONS(461), - [sym_nullLiteral] = ACTIONS(461), - [sym_trueLiteral] = ACTIONS(461), - [sym_falseLiteral] = ACTIONS(461), - [sym_intLiteral] = ACTIONS(461), - [sym_floatLiteral] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_POUND_DQUOTE] = ACTIONS(461), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(461), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(461), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(461), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(461), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(461), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(463), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(463), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(463), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(463), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(463), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(463), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(463), - [anon_sym_new] = ACTIONS(461), - [anon_sym_super] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), - [anon_sym_BANG_BANG] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_STAR_STAR] = ACTIONS(463), - [anon_sym_QMARK_QMARK] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE_SLASH] = ACTIONS(463), - [anon_sym_PERCENT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_AMP_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(463), - [anon_sym_PIPE_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_let] = ACTIONS(461), - [anon_sym_throw] = ACTIONS(461), - [anon_sym_trace] = ACTIONS(461), - [anon_sym_read] = ACTIONS(461), - [anon_sym_read_QMARK] = ACTIONS(463), - [anon_sym_read_STAR] = ACTIONS(463), + [anon_sym_module] = ACTIONS(467), + [anon_sym_import] = ACTIONS(467), + [anon_sym_as] = ACTIONS(467), + [anon_sym_import_STAR] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_function] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(469), + [anon_sym_for] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_COMMA] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_when] = ACTIONS(467), + [anon_sym_else] = ACTIONS(467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(467), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_external] = ACTIONS(467), + [anon_sym_abstract] = ACTIONS(467), + [anon_sym_open] = ACTIONS(467), + [anon_sym_local] = ACTIONS(467), + [anon_sym_hidden] = ACTIONS(467), + [anon_sym_fixed] = ACTIONS(467), + [anon_sym_const] = ACTIONS(467), + [sym_thisExpr] = ACTIONS(467), + [sym_outerExpr] = ACTIONS(467), + [sym_nullLiteral] = ACTIONS(467), + [sym_trueLiteral] = ACTIONS(467), + [sym_falseLiteral] = ACTIONS(467), + [sym_intLiteral] = ACTIONS(467), + [sym_floatLiteral] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_POUND_DQUOTE] = ACTIONS(467), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(467), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(467), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(467), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(467), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(467), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), + [anon_sym_new] = ACTIONS(467), + [anon_sym_super] = ACTIONS(467), + [anon_sym_DOT] = ACTIONS(467), + [anon_sym_QMARK_DOT] = ACTIONS(469), + [anon_sym_BANG_BANG] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(467), + [anon_sym_STAR_STAR] = ACTIONS(469), + [anon_sym_QMARK_QMARK] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(467), + [anon_sym_TILDE_SLASH] = ACTIONS(469), + [anon_sym_PERCENT] = ACTIONS(469), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(469), + [anon_sym_PIPE_PIPE] = ACTIONS(469), + [anon_sym_PIPE_GT] = ACTIONS(469), + [anon_sym_is] = ACTIONS(467), + [anon_sym_if] = ACTIONS(467), + [anon_sym_let] = ACTIONS(467), + [anon_sym_throw] = ACTIONS(467), + [anon_sym_trace] = ACTIONS(467), + [anon_sym_read] = ACTIONS(467), + [anon_sym_read_QMARK] = ACTIONS(469), + [anon_sym_read_STAR] = ACTIONS(469), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(463), + [sym__open_subscript_bracket] = ACTIONS(469), }, [70] = { [sym_shebangComment] = STATE(70), [sym_lineComment] = STATE(70), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(427), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(465), - [anon_sym_import] = ACTIONS(465), - [anon_sym_as] = ACTIONS(465), - [anon_sym_import_STAR] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_function] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_RBRACK] = ACTIONS(467), - [anon_sym_LBRACK_LBRACK] = ACTIONS(467), - [anon_sym_for] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(467), - [anon_sym_RPAREN] = ACTIONS(467), - [anon_sym_when] = ACTIONS(465), - [anon_sym_else] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(467), - [anon_sym_STAR] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(465), - [anon_sym_GT] = ACTIONS(465), - [anon_sym_external] = ACTIONS(465), - [anon_sym_abstract] = ACTIONS(465), - [anon_sym_open] = ACTIONS(465), - [anon_sym_local] = ACTIONS(465), - [anon_sym_hidden] = ACTIONS(465), - [anon_sym_fixed] = ACTIONS(465), - [anon_sym_const] = ACTIONS(465), - [sym_thisExpr] = ACTIONS(465), - [sym_outerExpr] = ACTIONS(465), - [sym_nullLiteral] = ACTIONS(465), - [sym_trueLiteral] = ACTIONS(465), - [sym_falseLiteral] = ACTIONS(465), - [sym_intLiteral] = ACTIONS(465), - [sym_floatLiteral] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_POUND_DQUOTE] = ACTIONS(465), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(465), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(465), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(465), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(465), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [anon_sym_new] = ACTIONS(465), - [anon_sym_super] = ACTIONS(465), - [anon_sym_DOT] = ACTIONS(465), - [anon_sym_QMARK_DOT] = ACTIONS(467), - [anon_sym_BANG_BANG] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(467), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_STAR_STAR] = ACTIONS(467), - [anon_sym_QMARK_QMARK] = ACTIONS(467), - [anon_sym_SLASH] = ACTIONS(465), - [anon_sym_TILDE_SLASH] = ACTIONS(467), - [anon_sym_PERCENT] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(467), - [anon_sym_LT_EQ] = ACTIONS(467), - [anon_sym_GT_EQ] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(467), - [anon_sym_AMP_AMP] = ACTIONS(467), - [anon_sym_PIPE_PIPE] = ACTIONS(467), - [anon_sym_PIPE_GT] = ACTIONS(467), - [anon_sym_is] = ACTIONS(465), - [anon_sym_if] = ACTIONS(465), - [anon_sym_let] = ACTIONS(465), - [anon_sym_throw] = ACTIONS(465), - [anon_sym_trace] = ACTIONS(465), - [anon_sym_read] = ACTIONS(465), - [anon_sym_read_QMARK] = ACTIONS(467), - [anon_sym_read_STAR] = ACTIONS(467), + [anon_sym_module] = ACTIONS(427), + [anon_sym_import] = ACTIONS(427), + [anon_sym_as] = ACTIONS(427), + [anon_sym_import_STAR] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_function] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_RBRACK] = ACTIONS(429), + [anon_sym_LBRACK_LBRACK] = ACTIONS(429), + [anon_sym_for] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_when] = ACTIONS(427), + [anon_sym_else] = ACTIONS(427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_external] = ACTIONS(427), + [anon_sym_abstract] = ACTIONS(427), + [anon_sym_open] = ACTIONS(427), + [anon_sym_local] = ACTIONS(427), + [anon_sym_hidden] = ACTIONS(427), + [anon_sym_fixed] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [sym_thisExpr] = ACTIONS(427), + [sym_outerExpr] = ACTIONS(427), + [sym_nullLiteral] = ACTIONS(427), + [sym_trueLiteral] = ACTIONS(427), + [sym_falseLiteral] = ACTIONS(427), + [sym_intLiteral] = ACTIONS(427), + [sym_floatLiteral] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_new] = ACTIONS(427), + [anon_sym_super] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_QMARK_DOT] = ACTIONS(429), + [anon_sym_BANG_BANG] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_STAR_STAR] = ACTIONS(429), + [anon_sym_QMARK_QMARK] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_TILDE_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [anon_sym_PIPE_GT] = ACTIONS(429), + [anon_sym_is] = ACTIONS(427), + [anon_sym_if] = ACTIONS(427), + [anon_sym_let] = ACTIONS(427), + [anon_sym_throw] = ACTIONS(427), + [anon_sym_trace] = ACTIONS(427), + [anon_sym_read] = ACTIONS(427), + [anon_sym_read_QMARK] = ACTIONS(429), + [anon_sym_read_STAR] = ACTIONS(429), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(467), + [sym__open_subscript_bracket] = ACTIONS(429), }, [71] = { [sym_shebangComment] = STATE(71), [sym_lineComment] = STATE(71), - [sym_identifier] = ACTIONS(469), + [sym_identifier] = ACTIONS(427), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(469), - [anon_sym_import] = ACTIONS(469), - [anon_sym_as] = ACTIONS(469), - [anon_sym_import_STAR] = ACTIONS(471), - [anon_sym_LBRACE] = ACTIONS(471), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_function] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_RBRACK] = ACTIONS(471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(471), - [anon_sym_for] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(471), - [anon_sym_when] = ACTIONS(469), - [anon_sym_else] = ACTIONS(469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(469), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(471), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(469), - [anon_sym_external] = ACTIONS(469), - [anon_sym_abstract] = ACTIONS(469), - [anon_sym_open] = ACTIONS(469), - [anon_sym_local] = ACTIONS(469), - [anon_sym_hidden] = ACTIONS(469), - [anon_sym_fixed] = ACTIONS(469), - [anon_sym_const] = ACTIONS(469), - [sym_thisExpr] = ACTIONS(469), - [sym_outerExpr] = ACTIONS(469), - [sym_nullLiteral] = ACTIONS(469), - [sym_trueLiteral] = ACTIONS(469), - [sym_falseLiteral] = ACTIONS(469), - [sym_intLiteral] = ACTIONS(469), - [sym_floatLiteral] = ACTIONS(471), - [anon_sym_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(469), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [anon_sym_new] = ACTIONS(469), - [anon_sym_super] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(469), - [anon_sym_QMARK_DOT] = ACTIONS(471), - [anon_sym_BANG_BANG] = ACTIONS(471), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_STAR_STAR] = ACTIONS(471), - [anon_sym_QMARK_QMARK] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(469), - [anon_sym_TILDE_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(471), - [anon_sym_EQ_EQ] = ACTIONS(471), - [anon_sym_BANG_EQ] = ACTIONS(471), - [anon_sym_AMP_AMP] = ACTIONS(471), - [anon_sym_PIPE_PIPE] = ACTIONS(471), - [anon_sym_PIPE_GT] = ACTIONS(471), - [anon_sym_is] = ACTIONS(469), - [anon_sym_if] = ACTIONS(469), - [anon_sym_let] = ACTIONS(469), - [anon_sym_throw] = ACTIONS(469), - [anon_sym_trace] = ACTIONS(469), - [anon_sym_read] = ACTIONS(469), - [anon_sym_read_QMARK] = ACTIONS(471), - [anon_sym_read_STAR] = ACTIONS(471), + [anon_sym_module] = ACTIONS(427), + [anon_sym_import] = ACTIONS(427), + [anon_sym_as] = ACTIONS(427), + [anon_sym_import_STAR] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_function] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_RBRACK] = ACTIONS(429), + [anon_sym_LBRACK_LBRACK] = ACTIONS(429), + [anon_sym_for] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_when] = ACTIONS(427), + [anon_sym_else] = ACTIONS(427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_external] = ACTIONS(427), + [anon_sym_abstract] = ACTIONS(427), + [anon_sym_open] = ACTIONS(427), + [anon_sym_local] = ACTIONS(427), + [anon_sym_hidden] = ACTIONS(427), + [anon_sym_fixed] = ACTIONS(427), + [anon_sym_const] = ACTIONS(427), + [sym_thisExpr] = ACTIONS(427), + [sym_outerExpr] = ACTIONS(427), + [sym_nullLiteral] = ACTIONS(427), + [sym_trueLiteral] = ACTIONS(427), + [sym_falseLiteral] = ACTIONS(427), + [sym_intLiteral] = ACTIONS(427), + [sym_floatLiteral] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(429), + [anon_sym_new] = ACTIONS(427), + [anon_sym_super] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_QMARK_DOT] = ACTIONS(429), + [anon_sym_BANG_BANG] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_STAR_STAR] = ACTIONS(429), + [anon_sym_QMARK_QMARK] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_TILDE_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [anon_sym_PIPE_GT] = ACTIONS(429), + [anon_sym_is] = ACTIONS(427), + [anon_sym_if] = ACTIONS(427), + [anon_sym_let] = ACTIONS(427), + [anon_sym_throw] = ACTIONS(427), + [anon_sym_trace] = ACTIONS(427), + [anon_sym_read] = ACTIONS(427), + [anon_sym_read_QMARK] = ACTIONS(429), + [anon_sym_read_STAR] = ACTIONS(429), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(471), + [sym__open_subscript_bracket] = ACTIONS(429), }, [72] = { [sym_shebangComment] = STATE(72), @@ -13297,7 +13334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(493), [anon_sym_DOT_DOT_DOT] = ACTIONS(493), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(345), [anon_sym_PIPE] = ACTIONS(497), [anon_sym_STAR] = ACTIONS(493), [anon_sym_LT] = ACTIONS(493), @@ -13382,7 +13419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(499), [anon_sym_DOT_DOT_DOT] = ACTIONS(499), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(501), - [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(345), [anon_sym_PIPE] = ACTIONS(497), [anon_sym_STAR] = ACTIONS(499), [anon_sym_LT] = ACTIONS(499), @@ -13450,7 +13487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [79] = { [sym_shebangComment] = STATE(79), - [sym_objectBody] = STATE(61), + [sym_objectBody] = STATE(58), [sym_lineComment] = STATE(79), [sym_identifier] = ACTIONS(503), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -13586,7 +13623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(510), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(510), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -13669,11 +13706,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(546), [anon_sym_DOT] = ACTIONS(546), [anon_sym_QMARK_DOT] = ACTIONS(548), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(546), [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(528), + [anon_sym_QMARK_QMARK] = ACTIONS(548), [anon_sym_SLASH] = ACTIONS(516), [anon_sym_TILDE_SLASH] = ACTIONS(530), [anon_sym_PERCENT] = ACTIONS(530), @@ -13684,7 +13721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(534), [anon_sym_AMP_AMP] = ACTIONS(536), [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_PIPE_GT] = ACTIONS(540), + [anon_sym_PIPE_GT] = ACTIONS(548), [anon_sym_is] = ACTIONS(542), [anon_sym_if] = ACTIONS(546), [anon_sym_let] = ACTIONS(546), @@ -13752,7 +13789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(550), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(550), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -13833,13 +13870,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), [anon_sym_new] = ACTIONS(554), [anon_sym_super] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_QMARK_DOT] = ACTIONS(556), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(520), + [anon_sym_QMARK_DOT] = ACTIONS(522), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(554), [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(556), + [anon_sym_QMARK_QMARK] = ACTIONS(528), [anon_sym_SLASH] = ACTIONS(516), [anon_sym_TILDE_SLASH] = ACTIONS(530), [anon_sym_PERCENT] = ACTIONS(530), @@ -13850,7 +13887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(534), [anon_sym_AMP_AMP] = ACTIONS(536), [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_PIPE_GT] = ACTIONS(556), + [anon_sym_PIPE_GT] = ACTIONS(540), [anon_sym_is] = ACTIONS(542), [anon_sym_if] = ACTIONS(554), [anon_sym_let] = ACTIONS(554), @@ -13862,182 +13899,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(556), + [sym__open_subscript_bracket] = ACTIONS(544), }, [84] = { [sym_shebangComment] = STATE(84), [sym_lineComment] = STATE(84), - [sym_identifier] = ACTIONS(554), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(554), - [anon_sym_import] = ACTIONS(554), - [anon_sym_as] = ACTIONS(512), - [anon_sym_import_STAR] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(556), - [anon_sym_for] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_when] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_external] = ACTIONS(554), - [anon_sym_abstract] = ACTIONS(554), - [anon_sym_open] = ACTIONS(554), - [anon_sym_local] = ACTIONS(554), - [anon_sym_hidden] = ACTIONS(554), - [anon_sym_fixed] = ACTIONS(554), - [anon_sym_const] = ACTIONS(554), - [sym_thisExpr] = ACTIONS(554), - [sym_outerExpr] = ACTIONS(554), - [sym_nullLiteral] = ACTIONS(554), - [sym_trueLiteral] = ACTIONS(554), - [sym_falseLiteral] = ACTIONS(554), - [sym_intLiteral] = ACTIONS(554), - [sym_floatLiteral] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_new] = ACTIONS(554), - [anon_sym_super] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_QMARK_DOT] = ACTIONS(556), - [anon_sym_BANG_BANG] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(516), - [anon_sym_TILDE_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(534), - [anon_sym_BANG_EQ] = ACTIONS(534), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_PIPE_GT] = ACTIONS(556), - [anon_sym_is] = ACTIONS(542), - [anon_sym_if] = ACTIONS(554), - [anon_sym_let] = ACTIONS(554), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_trace] = ACTIONS(554), - [anon_sym_read] = ACTIONS(554), - [anon_sym_read_QMARK] = ACTIONS(556), - [anon_sym_read_STAR] = ACTIONS(556), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(556), - }, - [85] = { - [sym_shebangComment] = STATE(85), - [sym_lineComment] = STATE(85), - [sym_identifier] = ACTIONS(554), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(554), - [anon_sym_import] = ACTIONS(554), - [anon_sym_as] = ACTIONS(554), - [anon_sym_import_STAR] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(556), - [anon_sym_for] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_when] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_external] = ACTIONS(554), - [anon_sym_abstract] = ACTIONS(554), - [anon_sym_open] = ACTIONS(554), - [anon_sym_local] = ACTIONS(554), - [anon_sym_hidden] = ACTIONS(554), - [anon_sym_fixed] = ACTIONS(554), - [anon_sym_const] = ACTIONS(554), - [sym_thisExpr] = ACTIONS(554), - [sym_outerExpr] = ACTIONS(554), - [sym_nullLiteral] = ACTIONS(554), - [sym_trueLiteral] = ACTIONS(554), - [sym_falseLiteral] = ACTIONS(554), - [sym_intLiteral] = ACTIONS(554), - [sym_floatLiteral] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_new] = ACTIONS(554), - [anon_sym_super] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_QMARK_DOT] = ACTIONS(556), - [anon_sym_BANG_BANG] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_TILDE_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_LT_EQ] = ACTIONS(556), - [anon_sym_GT_EQ] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(556), - [anon_sym_BANG_EQ] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_PIPE_GT] = ACTIONS(556), - [anon_sym_is] = ACTIONS(554), - [anon_sym_if] = ACTIONS(554), - [anon_sym_let] = ACTIONS(554), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_trace] = ACTIONS(554), - [anon_sym_read] = ACTIONS(554), - [anon_sym_read_QMARK] = ACTIONS(556), - [anon_sym_read_STAR] = ACTIONS(556), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(556), - }, - [86] = { - [sym_shebangComment] = STATE(86), - [sym_lineComment] = STATE(86), [sym_identifier] = ACTIONS(558), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(558), [anon_sym_import] = ACTIONS(558), - [anon_sym_as] = ACTIONS(461), + [anon_sym_as] = ACTIONS(512), [anon_sym_import_STAR] = ACTIONS(560), [anon_sym_LBRACE] = ACTIONS(560), [anon_sym_RBRACE] = ACTIONS(560), @@ -14049,9 +13920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(558), [anon_sym_DOT_DOT_DOT] = ACTIONS(558), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(518), [anon_sym_external] = ACTIONS(558), [anon_sym_abstract] = ACTIONS(558), [anon_sym_open] = ACTIONS(558), @@ -14082,25 +13953,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(560), [anon_sym_new] = ACTIONS(558), [anon_sym_super] = ACTIONS(558), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_QMARK_DOT] = ACTIONS(463), - [anon_sym_BANG_BANG] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(520), + [anon_sym_QMARK_DOT] = ACTIONS(522), + [anon_sym_BANG_BANG] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(558), - [anon_sym_STAR_STAR] = ACTIONS(463), - [anon_sym_QMARK_QMARK] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_TILDE_SLASH] = ACTIONS(463), - [anon_sym_PERCENT] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_AMP_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(463), - [anon_sym_PIPE_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), + [anon_sym_STAR_STAR] = ACTIONS(526), + [anon_sym_QMARK_QMARK] = ACTIONS(528), + [anon_sym_SLASH] = ACTIONS(516), + [anon_sym_TILDE_SLASH] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_EQ_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_AMP_AMP] = ACTIONS(536), + [anon_sym_PIPE_PIPE] = ACTIONS(538), + [anon_sym_PIPE_GT] = ACTIONS(540), + [anon_sym_is] = ACTIONS(542), [anon_sym_if] = ACTIONS(558), [anon_sym_let] = ACTIONS(558), [anon_sym_throw] = ACTIONS(558), @@ -14111,16 +13982,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(463), + [sym__open_subscript_bracket] = ACTIONS(544), }, - [87] = { - [sym_shebangComment] = STATE(87), - [sym_lineComment] = STATE(87), + [85] = { + [sym_shebangComment] = STATE(85), + [sym_lineComment] = STATE(85), [sym_identifier] = ACTIONS(562), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(562), [anon_sym_import] = ACTIONS(562), - [anon_sym_as] = ACTIONS(512), + [anon_sym_as] = ACTIONS(443), [anon_sym_import_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(564), [anon_sym_RBRACE] = ACTIONS(564), @@ -14132,9 +14003,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(562), [anon_sym_DOT_DOT_DOT] = ACTIONS(562), [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_GT] = ACTIONS(443), [anon_sym_external] = ACTIONS(562), [anon_sym_abstract] = ACTIONS(562), [anon_sym_open] = ACTIONS(562), @@ -14165,25 +14036,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(564), [anon_sym_new] = ACTIONS(562), [anon_sym_super] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_QMARK_DOT] = ACTIONS(445), + [anon_sym_BANG_BANG] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), [anon_sym_BANG] = ACTIONS(562), - [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(516), - [anon_sym_TILDE_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(534), - [anon_sym_BANG_EQ] = ACTIONS(534), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_PIPE_GT] = ACTIONS(540), - [anon_sym_is] = ACTIONS(542), + [anon_sym_STAR_STAR] = ACTIONS(445), + [anon_sym_QMARK_QMARK] = ACTIONS(445), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_TILDE_SLASH] = ACTIONS(445), + [anon_sym_PERCENT] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PIPE_GT] = ACTIONS(445), + [anon_sym_is] = ACTIONS(443), [anon_sym_if] = ACTIONS(562), [anon_sym_let] = ACTIONS(562), [anon_sym_throw] = ACTIONS(562), @@ -14194,11 +14065,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(544), + [sym__open_subscript_bracket] = ACTIONS(445), }, - [88] = { - [sym_shebangComment] = STATE(88), - [sym_lineComment] = STATE(88), + [86] = { + [sym_shebangComment] = STATE(86), + [sym_lineComment] = STATE(86), [sym_identifier] = ACTIONS(566), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(566), @@ -14250,7 +14121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(566), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(566), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -14279,88 +14150,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(544), }, + [87] = { + [sym_shebangComment] = STATE(87), + [sym_lineComment] = STATE(87), + [sym_identifier] = ACTIONS(546), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(546), + [anon_sym_import] = ACTIONS(546), + [anon_sym_as] = ACTIONS(546), + [anon_sym_import_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_function] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(548), + [anon_sym_for] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_when] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_external] = ACTIONS(546), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_open] = ACTIONS(546), + [anon_sym_local] = ACTIONS(546), + [anon_sym_hidden] = ACTIONS(546), + [anon_sym_fixed] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [sym_thisExpr] = ACTIONS(546), + [sym_outerExpr] = ACTIONS(546), + [sym_nullLiteral] = ACTIONS(546), + [sym_trueLiteral] = ACTIONS(546), + [sym_falseLiteral] = ACTIONS(546), + [sym_intLiteral] = ACTIONS(546), + [sym_floatLiteral] = ACTIONS(548), + [anon_sym_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_new] = ACTIONS(546), + [anon_sym_super] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_QMARK_DOT] = ACTIONS(548), + [anon_sym_BANG_BANG] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_STAR_STAR] = ACTIONS(526), + [anon_sym_QMARK_QMARK] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_TILDE_SLASH] = ACTIONS(548), + [anon_sym_PERCENT] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE_GT] = ACTIONS(548), + [anon_sym_is] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_trace] = ACTIONS(546), + [anon_sym_read] = ACTIONS(546), + [anon_sym_read_QMARK] = ACTIONS(548), + [anon_sym_read_STAR] = ACTIONS(548), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(548), + }, + [88] = { + [sym_shebangComment] = STATE(88), + [sym_lineComment] = STATE(88), + [sym_identifier] = ACTIONS(546), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(546), + [anon_sym_import] = ACTIONS(546), + [anon_sym_as] = ACTIONS(546), + [anon_sym_import_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_function] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(548), + [anon_sym_for] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_when] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_external] = ACTIONS(546), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_open] = ACTIONS(546), + [anon_sym_local] = ACTIONS(546), + [anon_sym_hidden] = ACTIONS(546), + [anon_sym_fixed] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [sym_thisExpr] = ACTIONS(546), + [sym_outerExpr] = ACTIONS(546), + [sym_nullLiteral] = ACTIONS(546), + [sym_trueLiteral] = ACTIONS(546), + [sym_falseLiteral] = ACTIONS(546), + [sym_intLiteral] = ACTIONS(546), + [sym_floatLiteral] = ACTIONS(548), + [anon_sym_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_new] = ACTIONS(546), + [anon_sym_super] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_QMARK_DOT] = ACTIONS(548), + [anon_sym_BANG_BANG] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_STAR_STAR] = ACTIONS(526), + [anon_sym_QMARK_QMARK] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(516), + [anon_sym_TILDE_SLASH] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE_GT] = ACTIONS(548), + [anon_sym_is] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_trace] = ACTIONS(546), + [anon_sym_read] = ACTIONS(546), + [anon_sym_read_QMARK] = ACTIONS(548), + [anon_sym_read_STAR] = ACTIONS(548), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(548), + }, [89] = { [sym_shebangComment] = STATE(89), [sym_lineComment] = STATE(89), - [sym_identifier] = ACTIONS(554), + [sym_identifier] = ACTIONS(546), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(554), - [anon_sym_import] = ACTIONS(554), - [anon_sym_as] = ACTIONS(554), - [anon_sym_import_STAR] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(556), - [anon_sym_for] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_when] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(556), + [anon_sym_module] = ACTIONS(546), + [anon_sym_import] = ACTIONS(546), + [anon_sym_as] = ACTIONS(546), + [anon_sym_import_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_function] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(548), + [anon_sym_for] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_when] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_external] = ACTIONS(554), - [anon_sym_abstract] = ACTIONS(554), - [anon_sym_open] = ACTIONS(554), - [anon_sym_local] = ACTIONS(554), - [anon_sym_hidden] = ACTIONS(554), - [anon_sym_fixed] = ACTIONS(554), - [anon_sym_const] = ACTIONS(554), - [sym_thisExpr] = ACTIONS(554), - [sym_outerExpr] = ACTIONS(554), - [sym_nullLiteral] = ACTIONS(554), - [sym_trueLiteral] = ACTIONS(554), - [sym_falseLiteral] = ACTIONS(554), - [sym_intLiteral] = ACTIONS(554), - [sym_floatLiteral] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_new] = ACTIONS(554), - [anon_sym_super] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_QMARK_DOT] = ACTIONS(556), - [anon_sym_BANG_BANG] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_external] = ACTIONS(546), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_open] = ACTIONS(546), + [anon_sym_local] = ACTIONS(546), + [anon_sym_hidden] = ACTIONS(546), + [anon_sym_fixed] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [sym_thisExpr] = ACTIONS(546), + [sym_outerExpr] = ACTIONS(546), + [sym_nullLiteral] = ACTIONS(546), + [sym_trueLiteral] = ACTIONS(546), + [sym_falseLiteral] = ACTIONS(546), + [sym_intLiteral] = ACTIONS(546), + [sym_floatLiteral] = ACTIONS(548), + [anon_sym_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_new] = ACTIONS(546), + [anon_sym_super] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_QMARK_DOT] = ACTIONS(548), + [anon_sym_BANG_BANG] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(546), [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(556), + [anon_sym_QMARK_QMARK] = ACTIONS(548), [anon_sym_SLASH] = ACTIONS(516), [anon_sym_TILDE_SLASH] = ACTIONS(530), [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(556), - [anon_sym_GT_EQ] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(556), - [anon_sym_BANG_EQ] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_PIPE_GT] = ACTIONS(556), - [anon_sym_is] = ACTIONS(554), - [anon_sym_if] = ACTIONS(554), - [anon_sym_let] = ACTIONS(554), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_trace] = ACTIONS(554), - [anon_sym_read] = ACTIONS(554), - [anon_sym_read_QMARK] = ACTIONS(556), - [anon_sym_read_STAR] = ACTIONS(556), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE_GT] = ACTIONS(548), + [anon_sym_is] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_trace] = ACTIONS(546), + [anon_sym_read] = ACTIONS(546), + [anon_sym_read_QMARK] = ACTIONS(548), + [anon_sym_read_STAR] = ACTIONS(548), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(556), + [sym__open_subscript_bracket] = ACTIONS(548), }, [90] = { [sym_shebangComment] = STATE(90), @@ -14369,6 +14406,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(570), [anon_sym_import] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_import_STAR] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_RBRACE] = ACTIONS(572), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(572), + [anon_sym_for] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_when] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_external] = ACTIONS(570), + [anon_sym_abstract] = ACTIONS(570), + [anon_sym_open] = ACTIONS(570), + [anon_sym_local] = ACTIONS(570), + [anon_sym_hidden] = ACTIONS(570), + [anon_sym_fixed] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [sym_thisExpr] = ACTIONS(570), + [sym_outerExpr] = ACTIONS(570), + [sym_nullLiteral] = ACTIONS(570), + [sym_trueLiteral] = ACTIONS(570), + [sym_falseLiteral] = ACTIONS(570), + [sym_intLiteral] = ACTIONS(570), + [sym_floatLiteral] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(570), + [anon_sym_POUND_DQUOTE] = ACTIONS(570), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(570), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(570), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(570), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(570), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_new] = ACTIONS(570), + [anon_sym_super] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(570), + [anon_sym_QMARK_DOT] = ACTIONS(572), + [anon_sym_BANG_BANG] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_STAR_STAR] = ACTIONS(526), + [anon_sym_QMARK_QMARK] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_TILDE_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_PIPE_GT] = ACTIONS(572), + [anon_sym_is] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_throw] = ACTIONS(570), + [anon_sym_trace] = ACTIONS(570), + [anon_sym_read] = ACTIONS(570), + [anon_sym_read_QMARK] = ACTIONS(572), + [anon_sym_read_STAR] = ACTIONS(572), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(572), + }, + [91] = { + [sym_shebangComment] = STATE(91), + [sym_lineComment] = STATE(91), + [sym_identifier] = ACTIONS(570), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(570), + [anon_sym_import] = ACTIONS(570), [anon_sym_as] = ACTIONS(512), [anon_sym_import_STAR] = ACTIONS(572), [anon_sym_LBRACE] = ACTIONS(572), @@ -14414,9 +14534,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), [anon_sym_new] = ACTIONS(570), [anon_sym_super] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(570), + [anon_sym_QMARK_DOT] = ACTIONS(572), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(570), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -14443,177 +14563,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(544), + [sym__open_subscript_bracket] = ACTIONS(572), }, - [91] = { - [sym_shebangComment] = STATE(91), - [sym_lineComment] = STATE(91), - [sym_identifier] = ACTIONS(554), + [92] = { + [sym_shebangComment] = STATE(92), + [sym_lineComment] = STATE(92), + [sym_identifier] = ACTIONS(546), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(554), - [anon_sym_import] = ACTIONS(554), + [anon_sym_module] = ACTIONS(546), + [anon_sym_import] = ACTIONS(546), [anon_sym_as] = ACTIONS(512), - [anon_sym_import_STAR] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(556), - [anon_sym_for] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_when] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(556), + [anon_sym_import_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_function] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(548), + [anon_sym_for] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_when] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(516), [anon_sym_LT] = ACTIONS(518), [anon_sym_GT] = ACTIONS(518), - [anon_sym_external] = ACTIONS(554), - [anon_sym_abstract] = ACTIONS(554), - [anon_sym_open] = ACTIONS(554), - [anon_sym_local] = ACTIONS(554), - [anon_sym_hidden] = ACTIONS(554), - [anon_sym_fixed] = ACTIONS(554), - [anon_sym_const] = ACTIONS(554), - [sym_thisExpr] = ACTIONS(554), - [sym_outerExpr] = ACTIONS(554), - [sym_nullLiteral] = ACTIONS(554), - [sym_trueLiteral] = ACTIONS(554), - [sym_falseLiteral] = ACTIONS(554), - [sym_intLiteral] = ACTIONS(554), - [sym_floatLiteral] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_new] = ACTIONS(554), - [anon_sym_super] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_QMARK_DOT] = ACTIONS(556), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_external] = ACTIONS(546), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_open] = ACTIONS(546), + [anon_sym_local] = ACTIONS(546), + [anon_sym_hidden] = ACTIONS(546), + [anon_sym_fixed] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [sym_thisExpr] = ACTIONS(546), + [sym_outerExpr] = ACTIONS(546), + [sym_nullLiteral] = ACTIONS(546), + [sym_trueLiteral] = ACTIONS(546), + [sym_falseLiteral] = ACTIONS(546), + [sym_intLiteral] = ACTIONS(546), + [sym_floatLiteral] = ACTIONS(548), + [anon_sym_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_new] = ACTIONS(546), + [anon_sym_super] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_QMARK_DOT] = ACTIONS(548), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(546), [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(556), + [anon_sym_QMARK_QMARK] = ACTIONS(548), [anon_sym_SLASH] = ACTIONS(516), [anon_sym_TILDE_SLASH] = ACTIONS(530), [anon_sym_PERCENT] = ACTIONS(530), [anon_sym_PLUS] = ACTIONS(524), [anon_sym_LT_EQ] = ACTIONS(532), [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(534), - [anon_sym_BANG_EQ] = ACTIONS(534), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_PIPE_GT] = ACTIONS(556), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE_GT] = ACTIONS(548), [anon_sym_is] = ACTIONS(542), - [anon_sym_if] = ACTIONS(554), - [anon_sym_let] = ACTIONS(554), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_trace] = ACTIONS(554), - [anon_sym_read] = ACTIONS(554), - [anon_sym_read_QMARK] = ACTIONS(556), - [anon_sym_read_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_trace] = ACTIONS(546), + [anon_sym_read] = ACTIONS(546), + [anon_sym_read_QMARK] = ACTIONS(548), + [anon_sym_read_STAR] = ACTIONS(548), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(556), + [sym__open_subscript_bracket] = ACTIONS(548), }, - [92] = { - [sym_shebangComment] = STATE(92), - [sym_lineComment] = STATE(92), - [sym_identifier] = ACTIONS(554), + [93] = { + [sym_shebangComment] = STATE(93), + [sym_lineComment] = STATE(93), + [sym_identifier] = ACTIONS(546), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(554), - [anon_sym_import] = ACTIONS(554), + [anon_sym_module] = ACTIONS(546), + [anon_sym_import] = ACTIONS(546), [anon_sym_as] = ACTIONS(512), - [anon_sym_import_STAR] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(556), - [anon_sym_for] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_when] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(556), + [anon_sym_import_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_function] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(548), + [anon_sym_for] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_when] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(516), [anon_sym_LT] = ACTIONS(518), [anon_sym_GT] = ACTIONS(518), - [anon_sym_external] = ACTIONS(554), - [anon_sym_abstract] = ACTIONS(554), - [anon_sym_open] = ACTIONS(554), - [anon_sym_local] = ACTIONS(554), - [anon_sym_hidden] = ACTIONS(554), - [anon_sym_fixed] = ACTIONS(554), - [anon_sym_const] = ACTIONS(554), - [sym_thisExpr] = ACTIONS(554), - [sym_outerExpr] = ACTIONS(554), - [sym_nullLiteral] = ACTIONS(554), - [sym_trueLiteral] = ACTIONS(554), - [sym_falseLiteral] = ACTIONS(554), - [sym_intLiteral] = ACTIONS(554), - [sym_floatLiteral] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_new] = ACTIONS(554), - [anon_sym_super] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_QMARK_DOT] = ACTIONS(556), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_external] = ACTIONS(546), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_open] = ACTIONS(546), + [anon_sym_local] = ACTIONS(546), + [anon_sym_hidden] = ACTIONS(546), + [anon_sym_fixed] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [sym_thisExpr] = ACTIONS(546), + [sym_outerExpr] = ACTIONS(546), + [sym_nullLiteral] = ACTIONS(546), + [sym_trueLiteral] = ACTIONS(546), + [sym_falseLiteral] = ACTIONS(546), + [sym_intLiteral] = ACTIONS(546), + [sym_floatLiteral] = ACTIONS(548), + [anon_sym_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_new] = ACTIONS(546), + [anon_sym_super] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_QMARK_DOT] = ACTIONS(548), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(546), [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(556), + [anon_sym_QMARK_QMARK] = ACTIONS(548), [anon_sym_SLASH] = ACTIONS(516), [anon_sym_TILDE_SLASH] = ACTIONS(530), [anon_sym_PERCENT] = ACTIONS(530), [anon_sym_PLUS] = ACTIONS(524), [anon_sym_LT_EQ] = ACTIONS(532), [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(556), - [anon_sym_BANG_EQ] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_PIPE_GT] = ACTIONS(556), + [anon_sym_EQ_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE_GT] = ACTIONS(548), [anon_sym_is] = ACTIONS(542), - [anon_sym_if] = ACTIONS(554), - [anon_sym_let] = ACTIONS(554), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_trace] = ACTIONS(554), - [anon_sym_read] = ACTIONS(554), - [anon_sym_read_QMARK] = ACTIONS(556), - [anon_sym_read_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_trace] = ACTIONS(546), + [anon_sym_read] = ACTIONS(546), + [anon_sym_read_QMARK] = ACTIONS(548), + [anon_sym_read_STAR] = ACTIONS(548), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(556), + [sym__open_subscript_bracket] = ACTIONS(548), }, - [93] = { - [sym_shebangComment] = STATE(93), - [sym_lineComment] = STATE(93), + [94] = { + [sym_shebangComment] = STATE(94), + [sym_lineComment] = STATE(94), [sym_identifier] = ACTIONS(574), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(574), @@ -14665,7 +14785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(574), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(574), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -14694,9 +14814,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(544), }, - [94] = { - [sym_shebangComment] = STATE(94), - [sym_lineComment] = STATE(94), + [95] = { + [sym_shebangComment] = STATE(95), + [sym_lineComment] = STATE(95), [sym_identifier] = ACTIONS(578), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(578), @@ -14748,7 +14868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(578), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(578), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -14777,175 +14897,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(544), }, - [95] = { - [sym_shebangComment] = STATE(95), - [sym_lineComment] = STATE(95), - [sym_identifier] = ACTIONS(546), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(546), - [anon_sym_import] = ACTIONS(546), - [anon_sym_as] = ACTIONS(546), - [anon_sym_import_STAR] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_function] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(548), - [anon_sym_for] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_when] = ACTIONS(546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(546), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_external] = ACTIONS(546), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_open] = ACTIONS(546), - [anon_sym_local] = ACTIONS(546), - [anon_sym_hidden] = ACTIONS(546), - [anon_sym_fixed] = ACTIONS(546), - [anon_sym_const] = ACTIONS(546), - [sym_thisExpr] = ACTIONS(546), - [sym_outerExpr] = ACTIONS(546), - [sym_nullLiteral] = ACTIONS(546), - [sym_trueLiteral] = ACTIONS(546), - [sym_falseLiteral] = ACTIONS(546), - [sym_intLiteral] = ACTIONS(546), - [sym_floatLiteral] = ACTIONS(548), - [anon_sym_DQUOTE] = ACTIONS(546), - [anon_sym_POUND_DQUOTE] = ACTIONS(546), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(546), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), - [anon_sym_new] = ACTIONS(546), - [anon_sym_super] = ACTIONS(546), - [anon_sym_DOT] = ACTIONS(546), - [anon_sym_QMARK_DOT] = ACTIONS(548), - [anon_sym_BANG_BANG] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(546), - [anon_sym_TILDE_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_PIPE_GT] = ACTIONS(548), - [anon_sym_is] = ACTIONS(546), - [anon_sym_if] = ACTIONS(546), - [anon_sym_let] = ACTIONS(546), - [anon_sym_throw] = ACTIONS(546), - [anon_sym_trace] = ACTIONS(546), - [anon_sym_read] = ACTIONS(546), - [anon_sym_read_QMARK] = ACTIONS(548), - [anon_sym_read_STAR] = ACTIONS(548), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(548), - }, [96] = { [sym_shebangComment] = STATE(96), [sym_lineComment] = STATE(96), - [sym_identifier] = ACTIONS(554), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(554), - [anon_sym_import] = ACTIONS(554), - [anon_sym_as] = ACTIONS(554), - [anon_sym_import_STAR] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(556), - [anon_sym_for] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_when] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_external] = ACTIONS(554), - [anon_sym_abstract] = ACTIONS(554), - [anon_sym_open] = ACTIONS(554), - [anon_sym_local] = ACTIONS(554), - [anon_sym_hidden] = ACTIONS(554), - [anon_sym_fixed] = ACTIONS(554), - [anon_sym_const] = ACTIONS(554), - [sym_thisExpr] = ACTIONS(554), - [sym_outerExpr] = ACTIONS(554), - [sym_nullLiteral] = ACTIONS(554), - [sym_trueLiteral] = ACTIONS(554), - [sym_falseLiteral] = ACTIONS(554), - [sym_intLiteral] = ACTIONS(554), - [sym_floatLiteral] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(554), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(556), - [anon_sym_new] = ACTIONS(554), - [anon_sym_super] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_QMARK_DOT] = ACTIONS(556), - [anon_sym_BANG_BANG] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(516), - [anon_sym_TILDE_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_LT_EQ] = ACTIONS(556), - [anon_sym_GT_EQ] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(556), - [anon_sym_BANG_EQ] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_PIPE_GT] = ACTIONS(556), - [anon_sym_is] = ACTIONS(554), - [anon_sym_if] = ACTIONS(554), - [anon_sym_let] = ACTIONS(554), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_trace] = ACTIONS(554), - [anon_sym_read] = ACTIONS(554), - [anon_sym_read_QMARK] = ACTIONS(556), - [anon_sym_read_STAR] = ACTIONS(556), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - [sym__open_subscript_bracket] = ACTIONS(556), - }, - [97] = { - [sym_shebangComment] = STATE(97), - [sym_lineComment] = STATE(97), [sym_identifier] = ACTIONS(582), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(582), @@ -14997,7 +14951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(582), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(582), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -15026,6 +14980,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_blockComment] = ACTIONS(9), [sym__open_subscript_bracket] = ACTIONS(544), }, + [97] = { + [sym_shebangComment] = STATE(97), + [sym_lineComment] = STATE(97), + [sym_identifier] = ACTIONS(546), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(546), + [anon_sym_import] = ACTIONS(546), + [anon_sym_as] = ACTIONS(512), + [anon_sym_import_STAR] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_function] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(548), + [anon_sym_for] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_when] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT_QMARK] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(518), + [anon_sym_external] = ACTIONS(546), + [anon_sym_abstract] = ACTIONS(546), + [anon_sym_open] = ACTIONS(546), + [anon_sym_local] = ACTIONS(546), + [anon_sym_hidden] = ACTIONS(546), + [anon_sym_fixed] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [sym_thisExpr] = ACTIONS(546), + [sym_outerExpr] = ACTIONS(546), + [sym_nullLiteral] = ACTIONS(546), + [sym_trueLiteral] = ACTIONS(546), + [sym_falseLiteral] = ACTIONS(546), + [sym_intLiteral] = ACTIONS(546), + [sym_floatLiteral] = ACTIONS(548), + [anon_sym_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(548), + [anon_sym_new] = ACTIONS(546), + [anon_sym_super] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_QMARK_DOT] = ACTIONS(548), + [anon_sym_BANG_BANG] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_STAR_STAR] = ACTIONS(526), + [anon_sym_QMARK_QMARK] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(516), + [anon_sym_TILDE_SLASH] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_EQ_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_AMP_AMP] = ACTIONS(536), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE_GT] = ACTIONS(548), + [anon_sym_is] = ACTIONS(542), + [anon_sym_if] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_trace] = ACTIONS(546), + [anon_sym_read] = ACTIONS(546), + [anon_sym_read_QMARK] = ACTIONS(548), + [anon_sym_read_STAR] = ACTIONS(548), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + [sym__open_subscript_bracket] = ACTIONS(548), + }, [98] = { [sym_shebangComment] = STATE(98), [sym_lineComment] = STATE(98), @@ -15079,7 +15116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(586), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(586), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -15161,7 +15198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(590), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(590), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -15243,7 +15280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(594), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(594), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -15325,7 +15362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(598), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -15489,7 +15526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(602), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(602), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -15571,7 +15608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(606), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(606), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -15653,7 +15690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(610), [anon_sym_DOT] = ACTIONS(520), [anon_sym_QMARK_DOT] = ACTIONS(522), - [anon_sym_BANG_BANG] = ACTIONS(415), + [anon_sym_BANG_BANG] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(524), [anon_sym_BANG] = ACTIONS(610), [anon_sym_STAR_STAR] = ACTIONS(526), @@ -15684,36 +15721,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [106] = { [sym_shebangComment] = STATE(106), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(502), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(481), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_typedIdentifier] = STATE(921), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_typedIdentifier] = STATE(926), [sym_lineComment] = STATE(106), [sym_identifier] = ACTIONS(614), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -15758,115 +15795,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [107] = { - [sym_shebangComment] = STATE(107), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(507), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_typedIdentifier] = STATE(921), - [sym_lineComment] = STATE(107), - [sym_identifier] = ACTIONS(614), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_RPAREN] = ACTIONS(616), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteral] = ACTIONS(63), - [sym_trueLiteral] = ACTIONS(63), - [sym_falseLiteral] = ACTIONS(63), - [sym_intLiteral] = ACTIONS(63), - [sym_floatLiteral] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [108] = { - [sym_shebangComment] = STATE(108), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(491), - [sym_variableObjectLiteral] = STATE(60), + [107] = { + [sym_shebangComment] = STATE(107), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(513), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_typedIdentifier] = STATE(921), - [sym_lineComment] = STATE(108), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_typedIdentifier] = STATE(926), + [sym_lineComment] = STATE(107), [sym_identifier] = ACTIONS(614), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -15910,120 +15871,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [109] = { - [sym_shebangComment] = STATE(109), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(399), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(109), - [sym_identifier] = ACTIONS(636), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_RPAREN] = ACTIONS(638), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteral] = ACTIONS(63), - [sym_trueLiteral] = ACTIONS(63), - [sym_falseLiteral] = ACTIONS(63), - [sym_intLiteral] = ACTIONS(63), - [sym_floatLiteral] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [110] = { - [sym_shebangComment] = STATE(110), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(397), - [sym_variableObjectLiteral] = STATE(60), + [108] = { + [sym_shebangComment] = STATE(108), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(487), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(110), - [sym_identifier] = ACTIONS(636), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_typedIdentifier] = STATE(926), + [sym_lineComment] = STATE(108), + [sym_identifier] = ACTIONS(614), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_RPAREN] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(616), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteral] = ACTIONS(63), @@ -16060,45 +15947,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [111] = { - [sym_shebangComment] = STATE(111), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(411), - [sym_variableObjectLiteral] = STATE(60), + [109] = { + [sym_shebangComment] = STATE(109), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(103), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(111), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(109), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_RPAREN] = ACTIONS(642), + [sym_delete] = ACTIONS(638), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteral] = ACTIONS(63), @@ -16122,57 +16009,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [112] = { - [sym_shebangComment] = STATE(112), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(94), - [sym_variableObjectLiteral] = STATE(60), + [110] = { + [sym_shebangComment] = STATE(110), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(104), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(112), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(110), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(55), + [sym_delete] = ACTIONS(640), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteral] = ACTIONS(63), @@ -16209,118 +16097,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [113] = { - [sym_shebangComment] = STATE(113), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(421), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(113), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [114] = { - [sym_shebangComment] = STATE(114), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(508), - [sym_variableObjectLiteral] = STATE(60), + [111] = { + [sym_shebangComment] = STATE(111), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(403), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(114), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(111), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_RPAREN] = ACTIONS(642), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteral] = ACTIONS(63), @@ -16357,44 +16172,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [115] = { - [sym_shebangComment] = STATE(115), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(499), - [sym_variableObjectLiteral] = STATE(60), + [112] = { + [sym_shebangComment] = STATE(112), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(416), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(115), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(112), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_RPAREN] = ACTIONS(644), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteral] = ACTIONS(63), @@ -16431,44 +16247,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [116] = { - [sym_shebangComment] = STATE(116), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(402), - [sym_variableObjectLiteral] = STATE(60), + [113] = { + [sym_shebangComment] = STATE(113), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(101), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(116), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(113), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(55), + [sym_delete] = ACTIONS(646), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteral] = ACTIONS(63), @@ -16492,57 +16309,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [117] = { - [sym_shebangComment] = STATE(117), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(365), - [sym_variableObjectLiteral] = STATE(60), + [114] = { + [sym_shebangComment] = STATE(114), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(105), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(117), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(114), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(55), + [sym_delete] = ACTIONS(648), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteral] = ACTIONS(63), @@ -16566,57 +16384,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [118] = { - [sym_shebangComment] = STATE(118), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(366), - [sym_variableObjectLiteral] = STATE(60), + [115] = { + [sym_shebangComment] = STATE(115), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(409), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(118), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(115), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_RPAREN] = ACTIONS(650), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteral] = ACTIONS(63), @@ -16653,44 +16472,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [119] = { - [sym_shebangComment] = STATE(119), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(369), - [sym_variableObjectLiteral] = STATE(60), + [116] = { + [sym_shebangComment] = STATE(116), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(100), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(119), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(116), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), [anon_sym_import] = ACTIONS(41), [anon_sym_import_STAR] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(55), + [sym_delete] = ACTIONS(652), [sym_thisExpr] = ACTIONS(63), [sym_outerExpr] = ACTIONS(63), [sym_nullLiteral] = ACTIONS(63), @@ -16714,51 +16534,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [120] = { - [sym_shebangComment] = STATE(120), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(371), - [sym_variableObjectLiteral] = STATE(60), + [117] = { + [sym_shebangComment] = STATE(117), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(492), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(120), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(117), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -16801,38 +16621,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [121] = { - [sym_shebangComment] = STATE(121), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(374), - [sym_variableObjectLiteral] = STATE(60), + [118] = { + [sym_shebangComment] = STATE(118), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(383), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(121), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(118), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -16875,112 +16695,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [122] = { - [sym_shebangComment] = STATE(122), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(375), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(122), - [sym_identifier] = ACTIONS(636), + [119] = { + [sym_shebangComment] = STATE(119), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(337), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(119), + [sym_identifier] = ACTIONS(654), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(55), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteral] = ACTIONS(63), - [sym_trueLiteral] = ACTIONS(63), - [sym_falseLiteral] = ACTIONS(63), - [sym_intLiteral] = ACTIONS(63), - [sym_floatLiteral] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [123] = { - [sym_shebangComment] = STATE(123), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(495), - [sym_variableObjectLiteral] = STATE(60), + [120] = { + [sym_shebangComment] = STATE(120), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(485), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(123), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(120), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -17023,38 +16843,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [124] = { - [sym_shebangComment] = STATE(124), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(54), - [sym_variableObjectLiteral] = STATE(60), + [121] = { + [sym_shebangComment] = STATE(121), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(71), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(124), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(121), + [sym_identifier] = ACTIONS(636), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(55), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteral] = ACTIONS(63), + [sym_trueLiteral] = ACTIONS(63), + [sym_falseLiteral] = ACTIONS(63), + [sym_intLiteral] = ACTIONS(63), + [sym_floatLiteral] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_super] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [122] = { + [sym_shebangComment] = STATE(122), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(70), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(49), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(122), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -17097,37 +16991,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, + [123] = { + [sym_shebangComment] = STATE(123), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(486), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(49), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(123), + [sym_identifier] = ACTIONS(636), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(55), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteral] = ACTIONS(63), + [sym_trueLiteral] = ACTIONS(63), + [sym_falseLiteral] = ACTIONS(63), + [sym_intLiteral] = ACTIONS(63), + [sym_floatLiteral] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_super] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [124] = { + [sym_shebangComment] = STATE(124), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(512), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(49), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(124), + [sym_identifier] = ACTIONS(636), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(55), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteral] = ACTIONS(63), + [sym_trueLiteral] = ACTIONS(63), + [sym_falseLiteral] = ACTIONS(63), + [sym_intLiteral] = ACTIONS(63), + [sym_floatLiteral] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_super] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, [125] = { [sym_shebangComment] = STATE(125), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(56), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(96), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(125), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -17173,35 +17215,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [126] = { [sym_shebangComment] = STATE(126), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(90), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(80), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(126), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -17247,35 +17289,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [127] = { [sym_shebangComment] = STATE(127), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(97), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(95), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(127), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -17321,35 +17363,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [128] = { [sym_shebangComment] = STATE(128), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(80), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(94), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(128), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -17395,35 +17437,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [129] = { [sym_shebangComment] = STATE(129), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(93), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(86), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(129), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -17469,35 +17511,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [130] = { [sym_shebangComment] = STATE(130), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(503), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(490), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(130), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -17543,35 +17585,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [131] = { [sym_shebangComment] = STATE(131), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(387), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(70), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(131), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -17617,35 +17659,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [132] = { [sym_shebangComment] = STATE(132), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(477), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(71), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(132), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -17691,109 +17733,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [133] = { [sym_shebangComment] = STATE(133), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(105), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(466), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), [sym_lineComment] = STATE(133), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(718), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(55), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteral] = ACTIONS(63), - [sym_trueLiteral] = ACTIONS(63), - [sym_falseLiteral] = ACTIONS(63), - [sym_intLiteral] = ACTIONS(63), - [sym_floatLiteral] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [134] = { [sym_shebangComment] = STATE(134), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(506), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(388), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(134), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -17839,36 +17881,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [135] = { [sym_shebangComment] = STATE(135), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(410), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(465), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), [sym_lineComment] = STATE(135), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [136] = { + [sym_shebangComment] = STATE(136), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(432), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(136), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [137] = { + [sym_shebangComment] = STATE(137), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(385), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(49), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(137), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -17911,112 +18101,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [136] = { - [sym_shebangComment] = STATE(136), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(501), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(136), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [137] = { - [sym_shebangComment] = STATE(137), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(500), - [sym_variableObjectLiteral] = STATE(60), + [138] = { + [sym_shebangComment] = STATE(138), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(382), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(137), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(138), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -18059,38 +18175,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [138] = { - [sym_shebangComment] = STATE(138), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(505), - [sym_variableObjectLiteral] = STATE(60), + [139] = { + [sym_shebangComment] = STATE(139), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(361), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(138), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(139), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -18133,38 +18249,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [139] = { - [sym_shebangComment] = STATE(139), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(473), - [sym_variableObjectLiteral] = STATE(60), + [140] = { + [sym_shebangComment] = STATE(140), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(493), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(139), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(140), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -18207,38 +18323,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [140] = { - [sym_shebangComment] = STATE(140), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(496), - [sym_variableObjectLiteral] = STATE(60), + [141] = { + [sym_shebangComment] = STATE(141), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(509), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(140), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(141), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -18281,111 +18397,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [141] = { - [sym_shebangComment] = STATE(141), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(330), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(141), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, [142] = { [sym_shebangComment] = STATE(142), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(408), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(379), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(142), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -18431,406 +18473,554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [143] = { [sym_shebangComment] = STATE(143), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(327), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(424), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), [sym_lineComment] = STATE(143), - [sym_identifier] = ACTIONS(708), + [sym_identifier] = ACTIONS(718), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [144] = { [sym_shebangComment] = STATE(144), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(328), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(428), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), [sym_lineComment] = STATE(144), - [sym_identifier] = ACTIONS(708), + [sym_identifier] = ACTIONS(718), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [145] = { [sym_shebangComment] = STATE(145), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(329), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(454), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), [sym_lineComment] = STATE(145), - [sym_identifier] = ACTIONS(708), + [sym_identifier] = ACTIONS(718), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [146] = { [sym_shebangComment] = STATE(146), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(98), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(457), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), [sym_lineComment] = STATE(146), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(718), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(55), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteral] = ACTIONS(63), - [sym_trueLiteral] = ACTIONS(63), - [sym_falseLiteral] = ACTIONS(63), - [sym_intLiteral] = ACTIONS(63), - [sym_floatLiteral] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [147] = { [sym_shebangComment] = STATE(147), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(104), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(459), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), [sym_lineComment] = STATE(147), - [sym_identifier] = ACTIONS(636), + [sym_identifier] = ACTIONS(718), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(39), - [anon_sym_import] = ACTIONS(41), - [anon_sym_import_STAR] = ACTIONS(43), - [anon_sym_LPAREN] = ACTIONS(55), - [sym_thisExpr] = ACTIONS(63), - [sym_outerExpr] = ACTIONS(63), - [sym_nullLiteral] = ACTIONS(63), - [sym_trueLiteral] = ACTIONS(63), - [sym_falseLiteral] = ACTIONS(63), - [sym_intLiteral] = ACTIONS(63), - [sym_floatLiteral] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_POUND_DQUOTE] = ACTIONS(69), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [anon_sym_new] = ACTIONS(95), - [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [148] = { [sym_shebangComment] = STATE(148), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(385), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(462), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), [sym_lineComment] = STATE(148), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [149] = { + [sym_shebangComment] = STATE(149), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(464), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(149), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [150] = { + [sym_shebangComment] = STATE(150), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(479), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(49), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(150), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -18873,38 +19063,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [149] = { - [sym_shebangComment] = STATE(149), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(380), - [sym_variableObjectLiteral] = STATE(60), + [151] = { + [sym_shebangComment] = STATE(151), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(480), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(149), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(151), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -18947,38 +19137,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [150] = { - [sym_shebangComment] = STATE(150), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(478), - [sym_variableObjectLiteral] = STATE(60), + [152] = { + [sym_shebangComment] = STATE(152), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(472), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(150), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(152), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19021,38 +19211,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [151] = { - [sym_shebangComment] = STATE(151), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(389), - [sym_variableObjectLiteral] = STATE(60), + [153] = { + [sym_shebangComment] = STATE(153), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(338), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(153), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [154] = { + [sym_shebangComment] = STATE(154), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(415), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(151), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(154), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19095,38 +19359,408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [152] = { - [sym_shebangComment] = STATE(152), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(390), - [sym_variableObjectLiteral] = STATE(60), + [155] = { + [sym_shebangComment] = STATE(155), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(441), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(155), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [156] = { + [sym_shebangComment] = STATE(156), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(442), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(156), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [157] = { + [sym_shebangComment] = STATE(157), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(335), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(157), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [158] = { + [sym_shebangComment] = STATE(158), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(444), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(158), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [159] = { + [sym_shebangComment] = STATE(159), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(340), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(159), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [160] = { + [sym_shebangComment] = STATE(160), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(503), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(152), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(160), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19169,112 +19803,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [153] = { - [sym_shebangComment] = STATE(153), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(333), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(153), - [sym_identifier] = ACTIONS(708), + [161] = { + [sym_shebangComment] = STATE(161), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(336), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(161), + [sym_identifier] = ACTIONS(654), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [154] = { - [sym_shebangComment] = STATE(154), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(372), - [sym_variableObjectLiteral] = STATE(60), + [162] = { + [sym_shebangComment] = STATE(162), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(446), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(162), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [163] = { + [sym_shebangComment] = STATE(163), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(495), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(154), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(163), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19317,38 +20025,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [155] = { - [sym_shebangComment] = STATE(155), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(361), - [sym_variableObjectLiteral] = STATE(60), + [164] = { + [sym_shebangComment] = STATE(164), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(82), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(155), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(164), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19378,51 +20086,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [156] = { - [sym_shebangComment] = STATE(156), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(497), - [sym_variableObjectLiteral] = STATE(60), + [165] = { + [sym_shebangComment] = STATE(165), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(84), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(156), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(165), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19452,51 +20160,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [157] = { - [sym_shebangComment] = STATE(157), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(358), - [sym_variableObjectLiteral] = STATE(60), + [166] = { + [sym_shebangComment] = STATE(166), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(341), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(166), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [167] = { + [sym_shebangComment] = STATE(167), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(496), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(157), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(167), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19539,38 +20321,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [158] = { - [sym_shebangComment] = STATE(158), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(101), - [sym_variableObjectLiteral] = STATE(60), + [168] = { + [sym_shebangComment] = STATE(168), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(498), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(158), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(168), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19600,125 +20382,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [159] = { - [sym_shebangComment] = STATE(159), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(337), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(159), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [160] = { - [sym_shebangComment] = STATE(160), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(357), - [sym_variableObjectLiteral] = STATE(60), + [169] = { + [sym_shebangComment] = STATE(169), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(501), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(160), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(169), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19761,112 +20469,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [161] = { - [sym_shebangComment] = STATE(161), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(335), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(161), - [sym_identifier] = ACTIONS(708), + [170] = { + [sym_shebangComment] = STATE(170), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(342), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(170), + [sym_identifier] = ACTIONS(654), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [162] = { - [sym_shebangComment] = STATE(162), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(483), - [sym_variableObjectLiteral] = STATE(60), + [171] = { + [sym_shebangComment] = STATE(171), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(489), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(162), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(171), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19909,38 +20617,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [163] = { - [sym_shebangComment] = STATE(163), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(480), - [sym_variableObjectLiteral] = STATE(60), + [172] = { + [sym_shebangComment] = STATE(172), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(488), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(163), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(172), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -19983,260 +20691,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [164] = { - [sym_shebangComment] = STATE(164), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(443), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(164), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [165] = { - [sym_shebangComment] = STATE(165), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(436), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(165), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [166] = { - [sym_shebangComment] = STATE(166), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(332), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(166), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [167] = { - [sym_shebangComment] = STATE(167), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(504), - [sym_variableObjectLiteral] = STATE(60), + [173] = { + [sym_shebangComment] = STATE(173), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(380), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(167), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(173), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -20279,38 +20765,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [168] = { - [sym_shebangComment] = STATE(168), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(474), - [sym_variableObjectLiteral] = STATE(60), + [174] = { + [sym_shebangComment] = STATE(174), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(507), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(168), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(174), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -20353,38 +20839,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [169] = { - [sym_shebangComment] = STATE(169), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(479), - [sym_variableObjectLiteral] = STATE(60), + [175] = { + [sym_shebangComment] = STATE(175), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(469), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(175), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [176] = { + [sym_shebangComment] = STATE(176), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(407), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(169), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(176), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -20427,38 +20987,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [170] = { - [sym_shebangComment] = STATE(170), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(378), - [sym_variableObjectLiteral] = STATE(60), + [177] = { + [sym_shebangComment] = STATE(177), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(419), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(177), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [178] = { + [sym_shebangComment] = STATE(178), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(510), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(170), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(178), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -20501,260 +21135,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [171] = { - [sym_shebangComment] = STATE(171), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(432), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(171), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [172] = { - [sym_shebangComment] = STATE(172), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(426), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(172), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [173] = { - [sym_shebangComment] = STATE(173), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(425), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(173), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [174] = { - [sym_shebangComment] = STATE(174), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(481), - [sym_variableObjectLiteral] = STATE(60), + [179] = { + [sym_shebangComment] = STATE(179), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(478), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(174), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(179), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -20797,38 +21209,778 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [175] = { - [sym_shebangComment] = STATE(175), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(404), - [sym_variableObjectLiteral] = STATE(60), + [180] = { + [sym_shebangComment] = STATE(180), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(420), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(180), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [181] = { + [sym_shebangComment] = STATE(181), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(297), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(181), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [182] = { + [sym_shebangComment] = STATE(182), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(323), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(182), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [183] = { + [sym_shebangComment] = STATE(183), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(303), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(183), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [184] = { + [sym_shebangComment] = STATE(184), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(298), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(184), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [185] = { + [sym_shebangComment] = STATE(185), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(302), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(185), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [186] = { + [sym_shebangComment] = STATE(186), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(331), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(186), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [187] = { + [sym_shebangComment] = STATE(187), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(304), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(187), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [188] = { + [sym_shebangComment] = STATE(188), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(422), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(188), + [sym_identifier] = ACTIONS(718), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [189] = { + [sym_shebangComment] = STATE(189), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(305), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(189), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [190] = { + [sym_shebangComment] = STATE(190), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(391), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(175), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(190), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -20871,112 +22023,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [176] = { - [sym_shebangComment] = STATE(176), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(326), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(176), - [sym_identifier] = ACTIONS(708), + [191] = { + [sym_shebangComment] = STATE(191), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(423), + [sym_variableObjectLiteral] = STATE(435), + [sym__expr2] = STATE(401), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(191), + [sym_identifier] = ACTIONS(718), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [177] = { - [sym_shebangComment] = STATE(177), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(472), - [sym_variableObjectLiteral] = STATE(60), + [192] = { + [sym_shebangComment] = STATE(192), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(306), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(192), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [193] = { + [sym_shebangComment] = STATE(193), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(319), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(193), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [194] = { + [sym_shebangComment] = STATE(194), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(98), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(177), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(194), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -21006,51 +22306,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [178] = { - [sym_shebangComment] = STATE(178), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(482), - [sym_variableObjectLiteral] = STATE(60), + [195] = { + [sym_shebangComment] = STATE(195), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(81), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(178), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(195), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -21080,51 +22380,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [179] = { - [sym_shebangComment] = STATE(179), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(488), - [sym_variableObjectLiteral] = STATE(60), + [196] = { + [sym_shebangComment] = STATE(196), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(97), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(179), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(196), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -21154,125 +22454,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [180] = { - [sym_shebangComment] = STATE(180), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(423), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(180), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [181] = { - [sym_shebangComment] = STATE(181), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(386), - [sym_variableObjectLiteral] = STATE(60), + [197] = { + [sym_shebangComment] = STATE(197), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(484), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(181), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(197), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -21315,38 +22541,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [182] = { - [sym_shebangComment] = STATE(182), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(494), - [sym_variableObjectLiteral] = STATE(60), + [198] = { + [sym_shebangComment] = STATE(198), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(405), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(182), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(198), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -21389,38 +22615,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [183] = { - [sym_shebangComment] = STATE(183), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(475), - [sym_variableObjectLiteral] = STATE(60), + [199] = { + [sym_shebangComment] = STATE(199), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(93), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(183), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(199), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -21450,51 +22676,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [184] = { - [sym_shebangComment] = STATE(184), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(476), - [sym_variableObjectLiteral] = STATE(60), + [200] = { + [sym_shebangComment] = STATE(200), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(92), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(184), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(200), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -21524,125 +22750,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [185] = { - [sym_shebangComment] = STATE(185), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(429), - [sym_variableObjectLiteral] = STATE(412), + [201] = { + [sym_shebangComment] = STATE(201), + [sym_parameterList] = STATE(1020), + [sym__expr] = STATE(497), + [sym_variableObjectLiteral] = STATE(435), [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(185), - [sym_identifier] = ACTIONS(644), + [sym_parenthesizedExpr] = STATE(438), + [sym_moduleExpr] = STATE(438), + [sym_variableExpr] = STATE(435), + [sym_slStringLiteral] = STATE(438), + [sym_mlStringLiteral] = STATE(438), + [sym_newExpr] = STATE(438), + [sym_objectLiteral] = STATE(438), + [sym_methodCallExpr] = STATE(438), + [sym_propertyCallExpr] = STATE(438), + [sym_subscriptExpr] = STATE(438), + [sym_unaryExpr] = STATE(438), + [sym_binaryExprRightAssoc] = STATE(438), + [sym_binaryExpr] = STATE(438), + [sym_isExpr] = STATE(438), + [sym_asExpr] = STATE(438), + [sym_ifExpr] = STATE(438), + [sym_letExpr] = STATE(438), + [sym_throwExpr] = STATE(438), + [sym_traceExpr] = STATE(438), + [sym_readExpr] = STATE(438), + [sym_readOrNullExpr] = STATE(438), + [sym_readGlobExpr] = STATE(438), + [sym_importExpr] = STATE(438), + [sym_importGlobExpr] = STATE(438), + [sym_functionLiteral] = STATE(438), + [sym_lineComment] = STATE(201), + [sym_identifier] = ACTIONS(718), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), + [anon_sym_module] = ACTIONS(720), + [anon_sym_import] = ACTIONS(722), + [anon_sym_import_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [sym_thisExpr] = ACTIONS(728), + [sym_outerExpr] = ACTIONS(728), + [sym_nullLiteral] = ACTIONS(728), + [sym_trueLiteral] = ACTIONS(728), + [sym_falseLiteral] = ACTIONS(728), + [sym_intLiteral] = ACTIONS(728), + [sym_floatLiteral] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND_DQUOTE] = ACTIONS(734), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(736), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(738), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(740), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(742), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(752), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(756), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_super] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_let] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_trace] = ACTIONS(774), + [anon_sym_read] = ACTIONS(776), + [anon_sym_read_QMARK] = ACTIONS(778), + [anon_sym_read_STAR] = ACTIONS(780), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [186] = { - [sym_shebangComment] = STATE(186), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(471), - [sym_variableObjectLiteral] = STATE(60), + [202] = { + [sym_shebangComment] = STATE(202), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(91), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(186), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(202), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -21672,125 +22898,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_trace] = ACTIONS(628), - [anon_sym_read] = ACTIONS(630), - [anon_sym_read_QMARK] = ACTIONS(632), - [anon_sym_read_STAR] = ACTIONS(634), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [187] = { - [sym_shebangComment] = STATE(187), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(331), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(187), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_if] = ACTIONS(103), + [anon_sym_let] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_trace] = ACTIONS(109), + [anon_sym_read] = ACTIONS(111), + [anon_sym_read_QMARK] = ACTIONS(113), + [anon_sym_read_STAR] = ACTIONS(115), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [188] = { - [sym_shebangComment] = STATE(188), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(83), - [sym_variableObjectLiteral] = STATE(60), + [203] = { + [sym_shebangComment] = STATE(203), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(90), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(188), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(203), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -21833,38 +22985,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [189] = { - [sym_shebangComment] = STATE(189), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(84), - [sym_variableObjectLiteral] = STATE(60), + [204] = { + [sym_shebangComment] = STATE(204), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(89), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(189), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(204), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -21907,186 +23059,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [190] = { - [sym_shebangComment] = STATE(190), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(428), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(190), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [191] = { - [sym_shebangComment] = STATE(191), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(427), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(191), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [192] = { - [sym_shebangComment] = STATE(192), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(91), - [sym_variableObjectLiteral] = STATE(60), + [205] = { + [sym_shebangComment] = STATE(205), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(491), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(192), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(205), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -22116,51 +23120,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [193] = { - [sym_shebangComment] = STATE(193), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(92), - [sym_variableObjectLiteral] = STATE(60), + [206] = { + [sym_shebangComment] = STATE(206), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(88), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(193), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(206), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -22203,38 +23207,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [194] = { - [sym_shebangComment] = STATE(194), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(99), - [sym_variableObjectLiteral] = STATE(60), + [207] = { + [sym_shebangComment] = STATE(207), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(87), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(194), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(207), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -22277,556 +23281,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [195] = { - [sym_shebangComment] = STATE(195), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(301), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(195), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [196] = { - [sym_shebangComment] = STATE(196), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(300), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(196), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [197] = { - [sym_shebangComment] = STATE(197), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(424), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(197), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [198] = { - [sym_shebangComment] = STATE(198), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(440), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(198), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [199] = { - [sym_shebangComment] = STATE(199), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(286), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(199), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [200] = { - [sym_shebangComment] = STATE(200), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(441), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(200), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [201] = { - [sym_shebangComment] = STATE(201), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(418), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(201), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [202] = { - [sym_shebangComment] = STATE(202), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(81), - [sym_variableObjectLiteral] = STATE(60), + [208] = { + [sym_shebangComment] = STATE(208), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(83), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(202), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(208), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -22869,38 +23355,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [203] = { - [sym_shebangComment] = STATE(203), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(95), - [sym_variableObjectLiteral] = STATE(60), + [209] = { + [sym_shebangComment] = STATE(209), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(511), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(203), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(209), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -22930,51 +23416,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [204] = { - [sym_shebangComment] = STATE(204), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(96), - [sym_variableObjectLiteral] = STATE(60), + [210] = { + [sym_shebangComment] = STATE(210), + [sym_parameterList] = STATE(1001), + [sym__expr] = STATE(99), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(204), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(210), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -23017,186 +23503,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [205] = { - [sym_shebangComment] = STATE(205), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(417), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(205), - [sym_identifier] = ACTIONS(644), + [211] = { + [sym_shebangComment] = STATE(211), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(339), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(211), + [sym_identifier] = ACTIONS(654), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [206] = { - [sym_shebangComment] = STATE(206), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(416), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(206), - [sym_identifier] = ACTIONS(644), + [212] = { + [sym_shebangComment] = STATE(212), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(494), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(49), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(212), + [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(55), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteral] = ACTIONS(63), + [sym_trueLiteral] = ACTIONS(63), + [sym_falseLiteral] = ACTIONS(63), + [sym_intLiteral] = ACTIONS(63), + [sym_floatLiteral] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_super] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [207] = { - [sym_shebangComment] = STATE(207), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(89), - [sym_variableObjectLiteral] = STATE(60), + [213] = { + [sym_shebangComment] = STATE(213), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(483), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(207), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(213), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -23226,51 +23712,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [208] = { - [sym_shebangComment] = STATE(208), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(484), - [sym_variableObjectLiteral] = STATE(60), + [214] = { + [sym_shebangComment] = STATE(214), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(292), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(214), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [215] = { + [sym_shebangComment] = STATE(215), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(477), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(208), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(215), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -23313,186 +23873,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [209] = { - [sym_shebangComment] = STATE(209), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(465), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(209), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [210] = { - [sym_shebangComment] = STATE(210), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(439), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(210), - [sym_identifier] = ACTIONS(644), + [216] = { + [sym_shebangComment] = STATE(216), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(291), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(216), + [sym_identifier] = ACTIONS(654), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [211] = { - [sym_shebangComment] = STATE(211), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(85), - [sym_variableObjectLiteral] = STATE(60), + [217] = { + [sym_shebangComment] = STATE(217), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(482), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(211), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(217), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -23522,51 +24008,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [212] = { - [sym_shebangComment] = STATE(212), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(485), - [sym_variableObjectLiteral] = STATE(60), + [218] = { + [sym_shebangComment] = STATE(218), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(389), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(212), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(218), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -23609,186 +24095,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [213] = { - [sym_shebangComment] = STATE(213), - [sym_parameterList] = STATE(1015), - [sym__expr] = STATE(445), - [sym_variableObjectLiteral] = STATE(412), - [sym__expr2] = STATE(401), - [sym_parenthesizedExpr] = STATE(450), - [sym_moduleExpr] = STATE(450), - [sym_variableExpr] = STATE(412), - [sym_slStringLiteral] = STATE(450), - [sym_mlStringLiteral] = STATE(450), - [sym_newExpr] = STATE(450), - [sym_objectLiteral] = STATE(450), - [sym_methodCallExpr] = STATE(450), - [sym_propertyCallExpr] = STATE(450), - [sym_subscriptExpr] = STATE(450), - [sym_unaryExpr] = STATE(450), - [sym_binaryExprRightAssoc] = STATE(450), - [sym_binaryExpr] = STATE(450), - [sym_isExpr] = STATE(450), - [sym_asExpr] = STATE(450), - [sym_ifExpr] = STATE(450), - [sym_letExpr] = STATE(450), - [sym_throwExpr] = STATE(450), - [sym_traceExpr] = STATE(450), - [sym_readExpr] = STATE(450), - [sym_readOrNullExpr] = STATE(450), - [sym_readGlobExpr] = STATE(450), - [sym_importExpr] = STATE(450), - [sym_importGlobExpr] = STATE(450), - [sym_functionLiteral] = STATE(450), - [sym_lineComment] = STATE(213), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_import_STAR] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [sym_thisExpr] = ACTIONS(654), - [sym_outerExpr] = ACTIONS(654), - [sym_nullLiteral] = ACTIONS(654), - [sym_trueLiteral] = ACTIONS(654), - [sym_falseLiteral] = ACTIONS(654), - [sym_intLiteral] = ACTIONS(654), - [sym_floatLiteral] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_POUND_DQUOTE] = ACTIONS(660), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(662), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(664), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(666), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(668), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(672), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(676), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(680), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), - [anon_sym_new] = ACTIONS(686), - [anon_sym_super] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_if] = ACTIONS(694), - [anon_sym_let] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(698), - [anon_sym_trace] = ACTIONS(700), - [anon_sym_read] = ACTIONS(702), - [anon_sym_read_QMARK] = ACTIONS(704), - [anon_sym_read_STAR] = ACTIONS(706), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [214] = { - [sym_shebangComment] = STATE(214), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(336), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(214), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [215] = { - [sym_shebangComment] = STATE(215), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(486), - [sym_variableObjectLiteral] = STATE(60), + [219] = { + [sym_shebangComment] = STATE(219), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(499), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(215), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(219), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -23831,186 +24169,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [216] = { - [sym_shebangComment] = STATE(216), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(305), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(216), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [217] = { - [sym_shebangComment] = STATE(217), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(298), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(217), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [218] = { - [sym_shebangComment] = STATE(218), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(82), - [sym_variableObjectLiteral] = STATE(60), + [220] = { + [sym_shebangComment] = STATE(220), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(508), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(218), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(220), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -24040,51 +24230,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [219] = { - [sym_shebangComment] = STATE(219), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(487), - [sym_variableObjectLiteral] = STATE(60), + [221] = { + [sym_shebangComment] = STATE(221), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(392), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(219), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(221), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -24127,185 +24317,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [220] = { - [sym_shebangComment] = STATE(220), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(294), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(220), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [221] = { - [sym_shebangComment] = STATE(221), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(323), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(221), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, [222] = { [sym_shebangComment] = STATE(222), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(100), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(506), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(222), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -24336,50 +24378,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [223] = { [sym_shebangComment] = STATE(223), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(489), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(500), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(223), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -24425,36 +24467,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [224] = { [sym_shebangComment] = STATE(224), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(56), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(321), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), [sym_lineComment] = STATE(224), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [225] = { + [sym_shebangComment] = STATE(225), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(394), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(49), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(225), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -24497,185 +24613,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [225] = { - [sym_shebangComment] = STATE(225), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(321), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(225), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, [226] = { [sym_shebangComment] = STATE(226), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(334), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(311), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), [sym_lineComment] = STATE(226), - [sym_identifier] = ACTIONS(708), + [sym_identifier] = ACTIONS(654), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [227] = { [sym_shebangComment] = STATE(227), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(490), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(502), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(227), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -24721,35 +24763,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [228] = { [sym_shebangComment] = STATE(228), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(54), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(411), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(228), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -24795,36 +24837,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [229] = { [sym_shebangComment] = STATE(229), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(498), - [sym_variableObjectLiteral] = STATE(60), - [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(309), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), [sym_lineComment] = STATE(229), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [230] = { + [sym_shebangComment] = STATE(230), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(308), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(230), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [231] = { + [sym_shebangComment] = STATE(231), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(504), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(49), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(231), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -24867,38 +25057,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [230] = { - [sym_shebangComment] = STATE(230), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(88), - [sym_variableObjectLiteral] = STATE(60), + [232] = { + [sym_shebangComment] = STATE(232), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(327), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(232), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [233] = { + [sym_shebangComment] = STATE(233), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(293), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(233), + [sym_identifier] = ACTIONS(654), + [anon_sym_POUND_BANG] = ACTIONS(3), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), + [aux_sym_lineComment_token1] = ACTIONS(5), + [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), + [sym_blockComment] = ACTIONS(9), + }, + [234] = { + [sym_shebangComment] = STATE(234), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(387), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(230), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(234), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -24928,51 +25266,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [231] = { - [sym_shebangComment] = STATE(231), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(492), - [sym_variableObjectLiteral] = STATE(60), + [235] = { + [sym_shebangComment] = STATE(235), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(505), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(231), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(235), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -25015,38 +25353,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [232] = { - [sym_shebangComment] = STATE(232), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(87), - [sym_variableObjectLiteral] = STATE(60), + [236] = { + [sym_shebangComment] = STATE(236), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(396), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(232), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(236), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -25076,199 +25414,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [233] = { - [sym_shebangComment] = STATE(233), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(316), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(233), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [234] = { - [sym_shebangComment] = STATE(234), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(303), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(234), - [sym_identifier] = ACTIONS(708), + [237] = { + [sym_shebangComment] = STATE(237), + [sym_parameterList] = STATE(1023), + [sym__expr] = STATE(294), + [sym_variableObjectLiteral] = STATE(307), + [sym__expr2] = STATE(290), + [sym_parenthesizedExpr] = STATE(320), + [sym_moduleExpr] = STATE(320), + [sym_variableExpr] = STATE(307), + [sym_slStringLiteral] = STATE(320), + [sym_mlStringLiteral] = STATE(320), + [sym_newExpr] = STATE(320), + [sym_objectLiteral] = STATE(320), + [sym_methodCallExpr] = STATE(320), + [sym_propertyCallExpr] = STATE(320), + [sym_subscriptExpr] = STATE(320), + [sym_unaryExpr] = STATE(320), + [sym_binaryExprRightAssoc] = STATE(320), + [sym_binaryExpr] = STATE(320), + [sym_isExpr] = STATE(320), + [sym_asExpr] = STATE(320), + [sym_ifExpr] = STATE(320), + [sym_letExpr] = STATE(320), + [sym_throwExpr] = STATE(320), + [sym_traceExpr] = STATE(320), + [sym_readExpr] = STATE(320), + [sym_readOrNullExpr] = STATE(320), + [sym_readGlobExpr] = STATE(320), + [sym_importExpr] = STATE(320), + [sym_importGlobExpr] = STATE(320), + [sym_functionLiteral] = STATE(320), + [sym_lineComment] = STATE(237), + [sym_identifier] = ACTIONS(654), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_module] = ACTIONS(656), + [anon_sym_import] = ACTIONS(658), + [anon_sym_import_STAR] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(662), + [sym_thisExpr] = ACTIONS(664), + [sym_outerExpr] = ACTIONS(664), + [sym_nullLiteral] = ACTIONS(664), + [sym_trueLiteral] = ACTIONS(664), + [sym_falseLiteral] = ACTIONS(664), + [sym_intLiteral] = ACTIONS(664), + [sym_floatLiteral] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND_DQUOTE] = ACTIONS(670), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(672), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(674), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(676), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(678), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(692), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_super] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_if] = ACTIONS(704), + [anon_sym_let] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_trace] = ACTIONS(710), + [anon_sym_read] = ACTIONS(712), + [anon_sym_read_QMARK] = ACTIONS(714), + [anon_sym_read_STAR] = ACTIONS(716), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [235] = { - [sym_shebangComment] = STATE(235), - [sym_parameterList] = STATE(985), - [sym__expr] = STATE(493), - [sym_variableObjectLiteral] = STATE(60), + [238] = { + [sym_shebangComment] = STATE(238), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(364), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), - [sym_lineComment] = STATE(235), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), + [sym_lineComment] = STATE(238), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), [anon_sym_module] = ACTIONS(39), @@ -25311,259 +25575,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, - [236] = { - [sym_shebangComment] = STATE(236), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(304), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(236), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [237] = { - [sym_shebangComment] = STATE(237), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(307), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(237), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, - [238] = { - [sym_shebangComment] = STATE(238), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(310), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), - [sym_lineComment] = STATE(238), - [sym_identifier] = ACTIONS(708), - [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), - [aux_sym_lineComment_token1] = ACTIONS(5), - [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), - [sym_blockComment] = ACTIONS(9), - }, [239] = { [sym_shebangComment] = STATE(239), - [sym_parameterList] = STATE(996), - [sym__expr] = STATE(103), - [sym_variableObjectLiteral] = STATE(60), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(395), + [sym_variableObjectLiteral] = STATE(54), [sym__expr2] = STATE(49), - [sym_parenthesizedExpr] = STATE(58), - [sym_moduleExpr] = STATE(58), - [sym_variableExpr] = STATE(60), - [sym_slStringLiteral] = STATE(58), - [sym_mlStringLiteral] = STATE(58), - [sym_newExpr] = STATE(58), - [sym_objectLiteral] = STATE(58), - [sym_methodCallExpr] = STATE(58), - [sym_propertyCallExpr] = STATE(58), - [sym_subscriptExpr] = STATE(58), - [sym_unaryExpr] = STATE(58), - [sym_binaryExprRightAssoc] = STATE(58), - [sym_binaryExpr] = STATE(58), - [sym_isExpr] = STATE(58), - [sym_asExpr] = STATE(58), - [sym_ifExpr] = STATE(58), - [sym_letExpr] = STATE(58), - [sym_throwExpr] = STATE(58), - [sym_traceExpr] = STATE(58), - [sym_readExpr] = STATE(58), - [sym_readOrNullExpr] = STATE(58), - [sym_readGlobExpr] = STATE(58), - [sym_importExpr] = STATE(58), - [sym_importGlobExpr] = STATE(58), - [sym_functionLiteral] = STATE(58), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(239), [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), @@ -25594,163 +25636,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), [anon_sym_new] = ACTIONS(95), [anon_sym_super] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_if] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_trace] = ACTIONS(109), - [anon_sym_read] = ACTIONS(111), - [anon_sym_read_QMARK] = ACTIONS(113), - [anon_sym_read_STAR] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [240] = { [sym_shebangComment] = STATE(240), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(311), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(381), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(49), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(240), - [sym_identifier] = ACTIONS(708), + [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(55), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteral] = ACTIONS(63), + [sym_trueLiteral] = ACTIONS(63), + [sym_falseLiteral] = ACTIONS(63), + [sym_intLiteral] = ACTIONS(63), + [sym_floatLiteral] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_super] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), }, [241] = { [sym_shebangComment] = STATE(241), - [sym_parameterList] = STATE(1018), - [sym__expr] = STATE(313), - [sym_variableObjectLiteral] = STATE(297), - [sym__expr2] = STATE(285), - [sym_parenthesizedExpr] = STATE(295), - [sym_moduleExpr] = STATE(295), - [sym_variableExpr] = STATE(297), - [sym_slStringLiteral] = STATE(295), - [sym_mlStringLiteral] = STATE(295), - [sym_newExpr] = STATE(295), - [sym_objectLiteral] = STATE(295), - [sym_methodCallExpr] = STATE(295), - [sym_propertyCallExpr] = STATE(295), - [sym_subscriptExpr] = STATE(295), - [sym_unaryExpr] = STATE(295), - [sym_binaryExprRightAssoc] = STATE(295), - [sym_binaryExpr] = STATE(295), - [sym_isExpr] = STATE(295), - [sym_asExpr] = STATE(295), - [sym_ifExpr] = STATE(295), - [sym_letExpr] = STATE(295), - [sym_throwExpr] = STATE(295), - [sym_traceExpr] = STATE(295), - [sym_readExpr] = STATE(295), - [sym_readOrNullExpr] = STATE(295), - [sym_readGlobExpr] = STATE(295), - [sym_importExpr] = STATE(295), - [sym_importGlobExpr] = STATE(295), - [sym_functionLiteral] = STATE(295), + [sym_parameterList] = STATE(990), + [sym__expr] = STATE(390), + [sym_variableObjectLiteral] = STATE(54), + [sym__expr2] = STATE(49), + [sym_parenthesizedExpr] = STATE(64), + [sym_moduleExpr] = STATE(64), + [sym_variableExpr] = STATE(54), + [sym_slStringLiteral] = STATE(64), + [sym_mlStringLiteral] = STATE(64), + [sym_newExpr] = STATE(64), + [sym_objectLiteral] = STATE(64), + [sym_methodCallExpr] = STATE(64), + [sym_propertyCallExpr] = STATE(64), + [sym_subscriptExpr] = STATE(64), + [sym_unaryExpr] = STATE(64), + [sym_binaryExprRightAssoc] = STATE(64), + [sym_binaryExpr] = STATE(64), + [sym_isExpr] = STATE(64), + [sym_asExpr] = STATE(64), + [sym_ifExpr] = STATE(64), + [sym_letExpr] = STATE(64), + [sym_throwExpr] = STATE(64), + [sym_traceExpr] = STATE(64), + [sym_readExpr] = STATE(64), + [sym_readOrNullExpr] = STATE(64), + [sym_readGlobExpr] = STATE(64), + [sym_importExpr] = STATE(64), + [sym_importGlobExpr] = STATE(64), + [sym_functionLiteral] = STATE(64), [sym_lineComment] = STATE(241), - [sym_identifier] = ACTIONS(708), + [sym_identifier] = ACTIONS(636), [anon_sym_POUND_BANG] = ACTIONS(3), - [anon_sym_module] = ACTIONS(710), - [anon_sym_import] = ACTIONS(712), - [anon_sym_import_STAR] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(716), - [sym_thisExpr] = ACTIONS(718), - [sym_outerExpr] = ACTIONS(718), - [sym_nullLiteral] = ACTIONS(718), - [sym_trueLiteral] = ACTIONS(718), - [sym_falseLiteral] = ACTIONS(718), - [sym_intLiteral] = ACTIONS(718), - [sym_floatLiteral] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(722), - [anon_sym_POUND_DQUOTE] = ACTIONS(724), - [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(726), - [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(728), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(730), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(732), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(734), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(736), - [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), - [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(740), - [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), - [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(744), - [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), - [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(748), - [anon_sym_new] = ACTIONS(750), - [anon_sym_super] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_if] = ACTIONS(758), - [anon_sym_let] = ACTIONS(760), - [anon_sym_throw] = ACTIONS(762), - [anon_sym_trace] = ACTIONS(764), - [anon_sym_read] = ACTIONS(766), - [anon_sym_read_QMARK] = ACTIONS(768), - [anon_sym_read_STAR] = ACTIONS(770), + [anon_sym_module] = ACTIONS(39), + [anon_sym_import] = ACTIONS(41), + [anon_sym_import_STAR] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(55), + [sym_thisExpr] = ACTIONS(63), + [sym_outerExpr] = ACTIONS(63), + [sym_nullLiteral] = ACTIONS(63), + [sym_trueLiteral] = ACTIONS(63), + [sym_falseLiteral] = ACTIONS(63), + [sym_intLiteral] = ACTIONS(63), + [sym_floatLiteral] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_POUND_DQUOTE] = ACTIONS(69), + [anon_sym_POUND_POUND_DQUOTE] = ACTIONS(71), + [anon_sym_POUND_POUND_POUND_DQUOTE] = ACTIONS(73), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(75), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(77), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(81), + [anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(83), + [anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(87), + [anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [anon_sym_new] = ACTIONS(95), + [anon_sym_super] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_if] = ACTIONS(622), + [anon_sym_let] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_trace] = ACTIONS(628), + [anon_sym_read] = ACTIONS(630), + [anon_sym_read_QMARK] = ACTIONS(632), + [anon_sym_read_STAR] = ACTIONS(634), [aux_sym_lineComment_token1] = ACTIONS(5), [anon_sym_SLASH_SLASH_DOLLAR] = ACTIONS(7), [sym_blockComment] = ACTIONS(9), @@ -25767,16 +25809,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - STATE(246), 1, + STATE(245), 1, aux_sym_classProperty_repeat1, - STATE(250), 1, + STATE(251), 1, sym_objectBody, STATE(242), 2, sym_shebangComment, sym_lineComment, - ACTIONS(774), 17, + ACTIONS(784), 17, + anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_QMARK, + sym_floatLiteral, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_read_QMARK, + anon_sym_read_STAR, + ACTIONS(782), 35, + anon_sym_module, + anon_sym_import, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_for, + anon_sym_when, + anon_sym_DOT_DOT_DOT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_thisExpr, + sym_outerExpr, + sym_nullLiteral, + sym_trueLiteral, + sym_falseLiteral, + sym_intLiteral, + anon_sym_DQUOTE, + anon_sym_POUND_DQUOTE, + anon_sym_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_new, + anon_sym_super, + anon_sym_if, + anon_sym_let, + anon_sym_throw, + anon_sym_trace, + anon_sym_read, + sym_identifier, + [82] = 10, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(786), 1, + anon_sym_LBRACE, + STATE(245), 1, + aux_sym_classProperty_repeat1, + STATE(251), 1, + sym_objectBody, + STATE(243), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(790), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -25794,7 +25908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(772), 35, + ACTIONS(788), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -25830,7 +25944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [82] = 10, + [164] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25839,16 +25953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - STATE(246), 1, + STATE(245), 1, aux_sym_classProperty_repeat1, - STATE(250), 1, + STATE(251), 1, sym_objectBody, - STATE(243), 2, + STATE(244), 2, sym_shebangComment, sym_lineComment, - ACTIONS(780), 17, + ACTIONS(794), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -25866,7 +25980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(778), 35, + ACTIONS(792), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -25902,7 +26016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [164] = 10, + [246] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25911,16 +26025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(776), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - STATE(246), 1, - aux_sym_classProperty_repeat1, - STATE(250), 1, + STATE(251), 1, sym_objectBody, - STATE(244), 2, + STATE(245), 3, sym_shebangComment, sym_lineComment, - ACTIONS(784), 17, + aux_sym_classProperty_repeat1, + ACTIONS(798), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -25938,7 +26051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(782), 35, + ACTIONS(796), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -25974,7 +26087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [246] = 10, + [326] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -25983,16 +26096,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - STATE(246), 1, + STATE(245), 1, aux_sym_classProperty_repeat1, - STATE(250), 1, + STATE(251), 1, sym_objectBody, - STATE(245), 2, + STATE(246), 2, sym_shebangComment, sym_lineComment, - ACTIONS(604), 17, + ACTIONS(600), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -26010,7 +26123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(602), 35, + ACTIONS(598), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26046,7 +26159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [328] = 9, + [408] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26055,16 +26168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(790), 1, - anon_sym_LBRACE, - STATE(250), 1, - sym_objectBody, - STATE(246), 3, + STATE(247), 2, sym_shebangComment, sym_lineComment, - aux_sym_classProperty_repeat1, - ACTIONS(788), 17, + ACTIONS(417), 18, anon_sym_import_STAR, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, anon_sym_LPAREN, @@ -26081,13 +26190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(786), 35, + ACTIONS(415), 36, anon_sym_module, anon_sym_import, anon_sym_function, anon_sym_LBRACK, anon_sym_for, anon_sym_when, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_external, anon_sym_abstract, @@ -26117,7 +26227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [408] = 7, + [483] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26126,10 +26236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(247), 2, + STATE(248), 2, sym_shebangComment, sym_lineComment, - ACTIONS(467), 18, + ACTIONS(469), 18, anon_sym_import_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26148,7 +26258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(465), 36, + ACTIONS(467), 36, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26185,7 +26295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [483] = 7, + [558] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26194,10 +26304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(248), 2, + STATE(249), 2, sym_shebangComment, sym_lineComment, - ACTIONS(479), 18, + ACTIONS(401), 18, anon_sym_import_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26216,7 +26326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(477), 36, + ACTIONS(399), 36, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26253,7 +26363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [558] = 7, + [633] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26262,12 +26372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(249), 2, + ACTIONS(807), 1, + anon_sym_else, + STATE(250), 2, sym_shebangComment, sym_lineComment, - ACTIONS(405), 18, + ACTIONS(805), 17, anon_sym_import_STAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, anon_sym_LPAREN, @@ -26284,14 +26395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(403), 36, + ACTIONS(803), 35, anon_sym_module, anon_sym_import, anon_sym_function, anon_sym_LBRACK, anon_sym_for, anon_sym_when, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_external, anon_sym_abstract, @@ -26321,7 +26431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [633] = 7, + [709] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26330,10 +26440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(250), 2, + STATE(251), 2, sym_shebangComment, sym_lineComment, - ACTIONS(560), 18, + ACTIONS(564), 18, anon_sym_import_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26352,7 +26462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(558), 35, + ACTIONS(562), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26388,7 +26498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [707] = 8, + [783] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26397,12 +26507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(797), 1, - anon_sym_else, - STATE(251), 2, + STATE(252), 2, sym_shebangComment, sym_lineComment, - ACTIONS(795), 17, + ACTIONS(811), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -26420,7 +26528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(793), 35, + ACTIONS(809), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26456,7 +26564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [783] = 7, + [856] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26465,10 +26573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(252), 2, + STATE(253), 2, sym_shebangComment, sym_lineComment, - ACTIONS(801), 17, + ACTIONS(815), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -26486,7 +26594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(799), 35, + ACTIONS(813), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26522,7 +26630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [856] = 7, + [929] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26531,10 +26639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(253), 2, + STATE(254), 2, sym_shebangComment, sym_lineComment, - ACTIONS(805), 17, + ACTIONS(819), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -26552,7 +26660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(803), 35, + ACTIONS(817), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26588,7 +26696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [929] = 7, + [1002] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26597,10 +26705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(254), 2, + STATE(255), 2, sym_shebangComment, sym_lineComment, - ACTIONS(809), 17, + ACTIONS(612), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -26618,7 +26726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(807), 35, + ACTIONS(610), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26654,7 +26762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [1002] = 7, + [1075] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26663,10 +26771,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(255), 2, + STATE(256), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(823), 17, + anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_QMARK, + sym_floatLiteral, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_read_QMARK, + anon_sym_read_STAR, + ACTIONS(821), 35, + anon_sym_module, + anon_sym_import, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_for, + anon_sym_when, + anon_sym_DOT_DOT_DOT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_thisExpr, + sym_outerExpr, + sym_nullLiteral, + sym_trueLiteral, + sym_falseLiteral, + sym_intLiteral, + anon_sym_DQUOTE, + anon_sym_POUND_DQUOTE, + anon_sym_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_new, + anon_sym_super, + anon_sym_if, + anon_sym_let, + anon_sym_throw, + anon_sym_trace, + anon_sym_read, + sym_identifier, + [1148] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(257), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(827), 17, + anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_QMARK, + sym_floatLiteral, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_read_QMARK, + anon_sym_read_STAR, + ACTIONS(825), 35, + anon_sym_module, + anon_sym_import, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_for, + anon_sym_when, + anon_sym_DOT_DOT_DOT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_thisExpr, + sym_outerExpr, + sym_nullLiteral, + sym_trueLiteral, + sym_falseLiteral, + sym_intLiteral, + anon_sym_DQUOTE, + anon_sym_POUND_DQUOTE, + anon_sym_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_new, + anon_sym_super, + anon_sym_if, + anon_sym_let, + anon_sym_throw, + anon_sym_trace, + anon_sym_read, + sym_identifier, + [1221] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(258), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(831), 17, + anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_QMARK, + sym_floatLiteral, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_read_QMARK, + anon_sym_read_STAR, + ACTIONS(829), 35, + anon_sym_module, + anon_sym_import, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_for, + anon_sym_when, + anon_sym_DOT_DOT_DOT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_thisExpr, + sym_outerExpr, + sym_nullLiteral, + sym_trueLiteral, + sym_falseLiteral, + sym_intLiteral, + anon_sym_DQUOTE, + anon_sym_POUND_DQUOTE, + anon_sym_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_new, + anon_sym_super, + anon_sym_if, + anon_sym_let, + anon_sym_throw, + anon_sym_trace, + anon_sym_read, + sym_identifier, + [1294] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(259), 2, sym_shebangComment, sym_lineComment, - ACTIONS(813), 17, + ACTIONS(608), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -26684,7 +26990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(811), 35, + ACTIONS(606), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26720,7 +27026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [1075] = 7, + [1367] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26729,10 +27035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(256), 2, + STATE(260), 2, sym_shebangComment, sym_lineComment, - ACTIONS(817), 17, + ACTIONS(835), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -26750,7 +27056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(815), 35, + ACTIONS(833), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26786,7 +27092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [1148] = 7, + [1440] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26795,10 +27101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(257), 2, + STATE(261), 2, sym_shebangComment, sym_lineComment, - ACTIONS(821), 17, + ACTIONS(600), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -26816,7 +27122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(819), 35, + ACTIONS(598), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26852,7 +27158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [1221] = 7, + [1513] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26861,10 +27167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(258), 2, + STATE(262), 2, sym_shebangComment, sym_lineComment, - ACTIONS(825), 17, + ACTIONS(839), 17, anon_sym_import_STAR, anon_sym_RBRACE, anon_sym_LBRACK_LBRACK, @@ -26882,7 +27188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_read_QMARK, anon_sym_read_STAR, - ACTIONS(823), 35, + ACTIONS(837), 35, anon_sym_module, anon_sym_import, anon_sym_function, @@ -26918,7 +27224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trace, anon_sym_read, sym_identifier, - [1294] = 9, + [1586] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26927,14 +27233,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(827), 1, + STATE(263), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(843), 17, + anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_QMARK, + sym_floatLiteral, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_read_QMARK, + anon_sym_read_STAR, + ACTIONS(841), 35, + anon_sym_module, + anon_sym_import, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_for, + anon_sym_when, + anon_sym_DOT_DOT_DOT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_thisExpr, + sym_outerExpr, + sym_nullLiteral, + sym_trueLiteral, + sym_falseLiteral, + sym_intLiteral, + anon_sym_DQUOTE, + anon_sym_POUND_DQUOTE, + anon_sym_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_POUND_POUND_POUND_POUND_POUND_POUND_DQUOTE, + anon_sym_new, + anon_sym_super, + anon_sym_if, + anon_sym_let, + anon_sym_throw, + anon_sym_trace, + anon_sym_read, + sym_identifier, + [1659] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(845), 1, anon_sym_DOT, - STATE(260), 1, + STATE(267), 1, aux_sym_qualifiedIdentifier_repeat1, - STATE(259), 2, + STATE(264), 2, sym_shebangComment, sym_lineComment, - ACTIONS(285), 19, + ACTIONS(289), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -26954,7 +27326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(287), 22, + ACTIONS(291), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -26977,7 +27349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [1362] = 8, + [1727] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -26986,13 +27358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(830), 1, - anon_sym_DOT, - STATE(260), 3, + ACTIONS(848), 1, + anon_sym_LT, + STATE(273), 1, + sym_typeArgumentList, + STATE(265), 2, sym_shebangComment, sym_lineComment, - aux_sym_qualifiedIdentifier_repeat1, - ACTIONS(298), 19, + ACTIONS(305), 18, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27000,7 +27373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, - anon_sym_LT, anon_sym_GT, anon_sym_external, anon_sym_abstract, @@ -27012,13 +27384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(300), 22, + ACTIONS(307), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, anon_sym_DASH, @@ -27035,7 +27408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [1428] = 9, + [1795] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27044,14 +27417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(833), 1, - anon_sym_LT, - STATE(279), 1, - sym_typeArgumentList, - STATE(261), 2, + ACTIONS(851), 1, + anon_sym_DOT, + STATE(266), 3, sym_shebangComment, sym_lineComment, - ACTIONS(312), 18, + aux_sym_qualifiedIdentifier_repeat1, + ACTIONS(312), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27059,6 +27431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, + anon_sym_LT, anon_sym_GT, anon_sym_external, anon_sym_abstract, @@ -27070,14 +27443,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(314), 23, + ACTIONS(314), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, anon_sym_DASH, @@ -27094,7 +27466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [1496] = 8, + [1861] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27103,12 +27475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(836), 1, - anon_sym_DASH_GT, - STATE(262), 2, + ACTIONS(854), 1, + anon_sym_DOT, + STATE(266), 1, + aux_sym_qualifiedIdentifier_repeat1, + STATE(267), 2, sym_shebangComment, sym_lineComment, - ACTIONS(292), 20, + ACTIONS(298), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27125,20 +27499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_DASH, anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(294), 22, + ACTIONS(300), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, @@ -27152,7 +27525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [1562] = 9, + [1929] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27161,14 +27534,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(838), 1, - anon_sym_DOT, - STATE(259), 1, - aux_sym_qualifiedIdentifier_repeat1, - STATE(263), 2, + ACTIONS(857), 1, + anon_sym_DASH_GT, + STATE(268), 2, sym_shebangComment, sym_lineComment, - ACTIONS(305), 19, + ACTIONS(283), 20, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27185,19 +27556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_DASH, anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(307), 22, + ACTIONS(285), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, @@ -27211,7 +27583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [1630] = 9, + [1995] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27220,19 +27592,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(841), 1, + ACTIONS(859), 1, anon_sym_LPAREN, - ACTIONS(843), 1, + ACTIONS(861), 1, anon_sym_QMARK, - STATE(264), 2, + ACTIONS(863), 1, + anon_sym_PIPE, + STATE(269), 2, sym_shebangComment, sym_lineComment, - ACTIONS(375), 18, + ACTIONS(499), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -27246,7 +27619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(377), 22, + ACTIONS(501), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -27269,7 +27642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [1697] = 7, + [2064] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27278,15 +27651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(265), 2, + ACTIONS(859), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_QMARK, + STATE(270), 2, sym_shebangComment, sym_lineComment, - ACTIONS(327), 19, + ACTIONS(339), 18, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -27301,13 +27677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(329), 23, + ACTIONS(341), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -27325,7 +27700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [1760] = 7, + [2131] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27334,10 +27709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(266), 2, + STATE(271), 2, sym_shebangComment, sym_lineComment, - ACTIONS(343), 19, + ACTIONS(323), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27357,7 +27732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(345), 23, + ACTIONS(325), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -27381,7 +27756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [1823] = 7, + [2194] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27390,10 +27765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(267), 2, + STATE(272), 2, sym_shebangComment, sym_lineComment, - ACTIONS(339), 19, + ACTIONS(312), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27413,7 +27788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(341), 23, + ACTIONS(314), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -27437,7 +27812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [1886] = 7, + [2257] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27446,10 +27821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(268), 2, + STATE(273), 2, sym_shebangComment, sym_lineComment, - ACTIONS(331), 19, + ACTIONS(327), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27469,7 +27844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(333), 23, + ACTIONS(329), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -27493,7 +27868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [1949] = 7, + [2320] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27502,10 +27877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(269), 2, + STATE(274), 2, sym_shebangComment, sym_lineComment, - ACTIONS(298), 19, + ACTIONS(335), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27525,7 +27900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(300), 23, + ACTIONS(337), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -27549,7 +27924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2012] = 9, + [2383] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27558,18 +27933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(841), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_QMARK, - STATE(270), 2, + STATE(275), 2, sym_shebangComment, sym_lineComment, - ACTIONS(367), 18, + ACTIONS(379), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -27584,12 +27956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(369), 22, + ACTIONS(381), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -27607,7 +27980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2079] = 7, + [2446] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27616,10 +27989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(271), 2, + STATE(276), 2, sym_shebangComment, sym_lineComment, - ACTIONS(319), 19, + ACTIONS(375), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27639,7 +28012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(321), 23, + ACTIONS(377), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -27663,7 +28036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2142] = 7, + [2509] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27672,10 +28045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(272), 2, + STATE(277), 2, sym_shebangComment, sym_lineComment, - ACTIONS(387), 19, + ACTIONS(371), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27695,7 +28068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(389), 23, + ACTIONS(373), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -27719,7 +28092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2205] = 10, + [2572] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27728,20 +28101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(841), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_PIPE, - STATE(273), 2, + STATE(278), 2, sym_shebangComment, sym_lineComment, - ACTIONS(493), 17, + ACTIONS(367), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -27755,12 +28124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(495), 22, + ACTIONS(369), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -27778,7 +28148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2274] = 9, + [2635] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27787,18 +28157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(841), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_QMARK, - STATE(274), 2, + STATE(279), 2, sym_shebangComment, sym_lineComment, - ACTIONS(351), 18, + ACTIONS(319), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -27813,12 +28180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(353), 22, + ACTIONS(321), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -27836,7 +28204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2341] = 7, + [2698] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27845,15 +28213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(275), 2, + ACTIONS(859), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_QMARK, + STATE(280), 2, sym_shebangComment, sym_lineComment, - ACTIONS(347), 19, + ACTIONS(387), 18, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -27868,13 +28239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(349), 23, + ACTIONS(389), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -27892,7 +28262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2404] = 7, + [2765] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27901,10 +28271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(276), 2, + STATE(281), 2, sym_shebangComment, sym_lineComment, - ACTIONS(323), 19, + ACTIONS(363), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -27924,7 +28294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(325), 23, + ACTIONS(365), 23, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -27948,7 +28318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2467] = 11, + [2828] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -27957,22 +28327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(847), 1, - anon_sym_LBRACE, - ACTIONS(849), 1, - sym__open_argument_paren, - STATE(287), 1, - sym_argumentList, - STATE(308), 1, - sym_objectBody, - STATE(277), 2, + STATE(282), 2, sym_shebangComment, sym_lineComment, - ACTIONS(269), 17, + ACTIONS(351), 19, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -27986,11 +28350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(271), 21, + ACTIONS(353), 23, sym__open_subscript_bracket, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -28008,7 +28374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2538] = 7, + [2891] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28017,15 +28383,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(278), 2, + ACTIONS(859), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_QMARK, + STATE(283), 2, sym_shebangComment, sym_lineComment, - ACTIONS(335), 19, + ACTIONS(347), 18, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -28040,13 +28409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(337), 23, + ACTIONS(349), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -28064,7 +28432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2601] = 7, + [2958] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28073,7 +28441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(279), 2, + STATE(284), 2, sym_shebangComment, sym_lineComment, ACTIONS(359), 19, @@ -28120,7 +28488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2664] = 9, + [3021] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28129,19 +28497,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(841), 1, - anon_sym_LPAREN, - ACTIONS(843), 1, - anon_sym_QMARK, - STATE(280), 2, + ACTIONS(865), 1, + anon_sym_LBRACE, + ACTIONS(867), 1, + sym__open_argument_paren, + STATE(295), 1, + sym_argumentList, + STATE(301), 1, + sym_objectBody, + STATE(285), 2, sym_shebangComment, sym_lineComment, - ACTIONS(379), 18, + ACTIONS(269), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -28155,10 +28526,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(381), 22, + ACTIONS(271), 21, sym__open_subscript_bracket, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_DOT, @@ -28178,7 +28548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2731] = 10, + [3092] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28187,20 +28557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(841), 1, + ACTIONS(859), 1, anon_sym_LPAREN, - ACTIONS(843), 1, + ACTIONS(861), 1, anon_sym_QMARK, - ACTIONS(845), 1, - anon_sym_PIPE, - STATE(281), 2, + STATE(286), 2, sym_shebangComment, sym_lineComment, - ACTIONS(499), 17, + ACTIONS(383), 18, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -28214,7 +28583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(501), 22, + ACTIONS(385), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -28237,7 +28606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2800] = 7, + [3159] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28246,16 +28615,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(282), 2, + ACTIONS(859), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_QMARK, + ACTIONS(863), 1, + anon_sym_PIPE, + STATE(287), 2, sym_shebangComment, sym_lineComment, - ACTIONS(371), 19, + ACTIONS(493), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_QMARK, - anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -28269,13 +28642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(373), 23, + ACTIONS(495), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -28293,7 +28665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2863] = 9, + [3228] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28302,14 +28674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(841), 1, + ACTIONS(859), 1, anon_sym_LPAREN, - ACTIONS(843), 1, + ACTIONS(861), 1, anon_sym_QMARK, - STATE(283), 2, + STATE(288), 2, sym_shebangComment, sym_lineComment, - ACTIONS(363), 18, + ACTIONS(355), 18, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28328,7 +28700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(365), 22, + ACTIONS(357), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -28351,7 +28723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2930] = 9, + [3295] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28360,14 +28732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(849), 1, + ACTIONS(867), 1, sym__open_argument_paren, - STATE(314), 1, + STATE(315), 1, sym_argumentList, - STATE(284), 2, + STATE(289), 2, sym_shebangComment, sym_lineComment, - ACTIONS(383), 17, + ACTIONS(331), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28385,7 +28757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(385), 22, + ACTIONS(333), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -28408,7 +28780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [2996] = 9, + [3361] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28417,11 +28789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(847), 1, + ACTIONS(865), 1, anon_sym_LBRACE, - STATE(290), 1, + STATE(300), 1, sym_objectBody, - STATE(285), 2, + STATE(290), 2, sym_shebangComment, sym_lineComment, ACTIONS(391), 17, @@ -28464,7 +28836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3061] = 21, + [3426] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28473,53 +28845,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(853), 2, + ACTIONS(899), 1, + sym__open_subscript_bracket, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(286), 2, + STATE(291), 2, sym_shebangComment, sym_lineComment, - ACTIONS(548), 8, - sym__open_subscript_bracket, + ACTIONS(552), 5, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, - anon_sym_DOT, - anon_sym_QMARK_DOT, aux_sym_docComment_token1, - ACTIONS(546), 11, + ACTIONS(550), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -28531,7 +28905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [3149] = 7, + [3518] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28540,17 +28914,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(287), 2, + ACTIONS(869), 1, + anon_sym_as, + ACTIONS(877), 1, + anon_sym_BANG_BANG, + ACTIONS(881), 1, + anon_sym_STAR_STAR, + ACTIONS(883), 1, + anon_sym_QMARK_QMARK, + ACTIONS(891), 1, + anon_sym_AMP_AMP, + ACTIONS(893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(895), 1, + anon_sym_PIPE_GT, + ACTIONS(897), 1, + anon_sym_is, + ACTIONS(899), 1, + sym__open_subscript_bracket, + ACTIONS(871), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(873), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(885), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(887), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(292), 2, sym_shebangComment, sym_lineComment, - ACTIONS(395), 17, - anon_sym_as, + ACTIONS(560), 5, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(558), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -28558,33 +28973,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_SLASH, - anon_sym_is, sym_identifier, - ACTIONS(397), 22, + [3610] = 23, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(869), 1, + anon_sym_as, + ACTIONS(877), 1, + anon_sym_BANG_BANG, + ACTIONS(881), 1, + anon_sym_STAR_STAR, + ACTIONS(883), 1, + anon_sym_QMARK_QMARK, + ACTIONS(891), 1, + anon_sym_AMP_AMP, + ACTIONS(893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(895), 1, + anon_sym_PIPE_GT, + ACTIONS(897), 1, + anon_sym_is, + ACTIONS(899), 1, sym__open_subscript_bracket, + ACTIONS(871), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(873), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(885), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(887), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(293), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(576), 5, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, - anon_sym_DOT, - anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + ACTIONS(574), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [3702] = 23, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(869), 1, + anon_sym_as, + ACTIONS(877), 1, anon_sym_BANG_BANG, - anon_sym_DASH, + ACTIONS(881), 1, anon_sym_STAR_STAR, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, + ACTIONS(891), 1, + anon_sym_AMP_AMP, + ACTIONS(893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(895), 1, + anon_sym_PIPE_GT, + ACTIONS(897), 1, + anon_sym_is, + ACTIONS(899), 1, + sym__open_subscript_bracket, + ACTIONS(871), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(873), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, + STATE(294), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(568), 5, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, aux_sym_docComment_token1, - [3209] = 7, + ACTIONS(566), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [3794] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28593,10 +29121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(288), 2, + STATE(295), 2, sym_shebangComment, sym_lineComment, - ACTIONS(477), 17, + ACTIONS(431), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28614,7 +29142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(479), 22, + ACTIONS(433), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -28637,7 +29165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3269] = 7, + [3854] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28646,10 +29174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(289), 2, + STATE(296), 2, sym_shebangComment, sym_lineComment, - ACTIONS(407), 17, + ACTIONS(467), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28667,7 +29195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(409), 22, + ACTIONS(469), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -28690,7 +29218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3329] = 7, + [3914] = 19, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28699,17 +29227,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(290), 2, + ACTIONS(869), 1, + anon_sym_as, + ACTIONS(877), 1, + anon_sym_BANG_BANG, + ACTIONS(881), 1, + anon_sym_STAR_STAR, + ACTIONS(891), 1, + anon_sym_AMP_AMP, + ACTIONS(893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(897), 1, + anon_sym_is, + ACTIONS(871), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(873), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(879), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(885), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(887), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(297), 2, sym_shebangComment, sym_lineComment, - ACTIONS(429), 17, - anon_sym_as, + ACTIONS(548), 10, + sym__open_subscript_bracket, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_GT, + aux_sym_docComment_token1, + ACTIONS(546), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [3998] = 16, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(869), 1, + anon_sym_as, + ACTIONS(877), 1, + anon_sym_BANG_BANG, + ACTIONS(881), 1, + anon_sym_STAR_STAR, + ACTIONS(897), 1, + anon_sym_is, + ACTIONS(871), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(879), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(885), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(887), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(298), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(546), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -28717,10 +29329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_SLASH, - anon_sym_is, sym_identifier, - ACTIONS(431), 22, + ACTIONS(548), 14, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -28728,22 +29338,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3389] = 7, + [4076] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28752,10 +29354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(291), 2, + STATE(299), 2, sym_shebangComment, sym_lineComment, - ACTIONS(453), 17, + ACTIONS(427), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28773,7 +29375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(455), 22, + ACTIONS(429), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -28796,7 +29398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3449] = 7, + [4136] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28805,10 +29407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(292), 2, + STATE(300), 2, sym_shebangComment, sym_lineComment, - ACTIONS(399), 17, + ACTIONS(423), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28826,7 +29428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(401), 22, + ACTIONS(425), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -28849,7 +29451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3509] = 7, + [4196] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28858,10 +29460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(293), 2, + STATE(301), 2, sym_shebangComment, sym_lineComment, - ACTIONS(485), 17, + ACTIONS(443), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -28879,7 +29481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(487), 22, + ACTIONS(445), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -28902,7 +29504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3569] = 12, + [4256] = 21, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28911,29 +29513,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(857), 1, + ACTIONS(869), 1, + anon_sym_as, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(853), 2, + ACTIONS(883), 1, + anon_sym_QMARK_QMARK, + ACTIONS(891), 1, + anon_sym_AMP_AMP, + ACTIONS(893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(895), 1, + anon_sym_PIPE_GT, + ACTIONS(897), 1, + anon_sym_is, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(859), 2, + ACTIONS(873), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - STATE(294), 2, + ACTIONS(887), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(302), 2, sym_shebangComment, sym_lineComment, - ACTIONS(554), 15, - anon_sym_as, + ACTIONS(572), 8, + sym__open_subscript_bracket, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + aux_sym_docComment_token1, + ACTIONS(570), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_LT, - anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -28941,26 +29570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_is, sym_identifier, - ACTIONS(556), 16, - sym__open_subscript_bracket, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_QMARK_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - aux_sym_docComment_token1, - [3639] = 7, + [4344] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -28969,17 +29580,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(295), 2, + ACTIONS(869), 1, + anon_sym_as, + ACTIONS(877), 1, + anon_sym_BANG_BANG, + ACTIONS(881), 1, + anon_sym_STAR_STAR, + ACTIONS(897), 1, + anon_sym_is, + ACTIONS(871), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(873), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(879), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(885), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(887), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(303), 2, sym_shebangComment, sym_lineComment, - ACTIONS(421), 17, - anon_sym_as, + ACTIONS(546), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -28987,10 +29620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_SLASH, - anon_sym_is, sym_identifier, - ACTIONS(423), 22, + ACTIONS(548), 12, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -28998,22 +29629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3699] = 7, + [4424] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29022,15 +29643,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(296), 2, + ACTIONS(877), 1, + anon_sym_BANG_BANG, + ACTIONS(881), 1, + anon_sym_STAR_STAR, + ACTIONS(871), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(885), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + STATE(304), 2, sym_shebangComment, sym_lineComment, - ACTIONS(437), 17, + ACTIONS(546), 15, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_external, @@ -29040,10 +29670,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(439), 22, + ACTIONS(548), 18, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29051,12 +29680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -29066,7 +29691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3759] = 7, + [4492] = 12, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29075,15 +29700,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(297), 2, + ACTIONS(877), 1, + anon_sym_BANG_BANG, + ACTIONS(881), 1, + anon_sym_STAR_STAR, + ACTIONS(871), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(879), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(885), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + STATE(305), 2, sym_shebangComment, sym_lineComment, - ACTIONS(391), 17, + ACTIONS(546), 15, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_external, @@ -29093,10 +29730,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(393), 22, + ACTIONS(548), 16, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29104,13 +29740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -29119,7 +29749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3819] = 11, + [4562] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29128,24 +29758,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(853), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(865), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - STATE(298), 2, + STATE(306), 2, sym_shebangComment, sym_lineComment, - ACTIONS(554), 15, + ACTIONS(546), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_external, @@ -29155,9 +29780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(556), 18, + ACTIONS(548), 20, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29167,6 +29793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DASH, anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -29176,7 +29804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3887] = 7, + [4626] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29185,10 +29813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(299), 2, + STATE(307), 2, sym_shebangComment, sym_lineComment, - ACTIONS(481), 17, + ACTIONS(391), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29206,7 +29834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(483), 22, + ACTIONS(393), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29229,7 +29857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [3947] = 23, + [4686] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29238,55 +29866,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(300), 2, + STATE(308), 2, sym_shebangComment, sym_lineComment, - ACTIONS(568), 5, + ACTIONS(514), 5, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(566), 11, + ACTIONS(510), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -29298,7 +29926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [4039] = 23, + [4778] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29307,55 +29935,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(301), 2, + STATE(309), 2, sym_shebangComment, sym_lineComment, - ACTIONS(564), 5, + ACTIONS(584), 5, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(562), 11, + ACTIONS(582), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -29367,7 +29995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [4131] = 7, + [4870] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29376,10 +30004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(302), 2, + STATE(310), 2, sym_shebangComment, sym_lineComment, - ACTIONS(417), 17, + ACTIONS(411), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29397,7 +30025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(419), 22, + ACTIONS(413), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29420,7 +30048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [4191] = 7, + [4930] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29429,10 +30057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(303), 2, + ACTIONS(877), 1, + anon_sym_BANG_BANG, + STATE(311), 2, sym_shebangComment, sym_lineComment, - ACTIONS(411), 17, + ACTIONS(427), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29450,7 +30080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(413), 22, + ACTIONS(429), 21, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29458,7 +30088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, @@ -29473,7 +30102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [4251] = 8, + [4992] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29482,12 +30111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - STATE(304), 2, + STATE(312), 2, sym_shebangComment, sym_lineComment, - ACTIONS(411), 17, + ACTIONS(455), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29505,7 +30132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(413), 21, + ACTIONS(457), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29513,6 +30140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, @@ -29527,7 +30155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [4313] = 9, + [5052] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29536,14 +30164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - STATE(305), 2, + STATE(313), 2, sym_shebangComment, sym_lineComment, - ACTIONS(546), 17, + ACTIONS(451), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29561,7 +30185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(548), 20, + ACTIONS(453), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29569,7 +30193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, @@ -29582,7 +30208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [4377] = 7, + [5112] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29591,10 +30217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(306), 2, + STATE(314), 2, sym_shebangComment, sym_lineComment, - ACTIONS(465), 17, + ACTIONS(439), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29612,7 +30238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(467), 22, + ACTIONS(441), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29635,76 +30261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [4437] = 23, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(851), 1, - anon_sym_as, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_QMARK_QMARK, - ACTIONS(871), 1, - anon_sym_AMP_AMP, - ACTIONS(873), 1, - anon_sym_PIPE_PIPE, - ACTIONS(875), 1, - anon_sym_PIPE_GT, - ACTIONS(877), 1, - anon_sym_is, - ACTIONS(881), 1, - sym__open_subscript_bracket, - ACTIONS(853), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(855), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(859), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(865), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(867), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(869), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(307), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(572), 5, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(570), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [4529] = 7, + [5172] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29713,10 +30270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(308), 2, + STATE(315), 2, sym_shebangComment, sym_lineComment, - ACTIONS(461), 17, + ACTIONS(481), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29734,7 +30291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(463), 22, + ACTIONS(483), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29757,7 +30314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [4589] = 7, + [5232] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29766,10 +30323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(309), 2, + STATE(316), 2, sym_shebangComment, sym_lineComment, - ACTIONS(425), 17, + ACTIONS(399), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29787,7 +30344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(427), 22, + ACTIONS(401), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -29810,7 +30367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [4649] = 23, + [5292] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -29819,148 +30376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, - anon_sym_as, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_QMARK_QMARK, - ACTIONS(871), 1, - anon_sym_AMP_AMP, - ACTIONS(873), 1, - anon_sym_PIPE_PIPE, - ACTIONS(875), 1, - anon_sym_PIPE_GT, - ACTIONS(877), 1, - anon_sym_is, - ACTIONS(881), 1, - sym__open_subscript_bracket, - ACTIONS(853), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(855), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(859), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(865), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(867), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(869), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(310), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(580), 5, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(578), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [4741] = 23, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(851), 1, - anon_sym_as, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_QMARK_QMARK, - ACTIONS(871), 1, - anon_sym_AMP_AMP, - ACTIONS(873), 1, - anon_sym_PIPE_PIPE, - ACTIONS(875), 1, - anon_sym_PIPE_GT, - ACTIONS(877), 1, - anon_sym_is, - ACTIONS(881), 1, - sym__open_subscript_bracket, - ACTIONS(853), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(855), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(859), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(865), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(867), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(869), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(311), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(584), 5, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(582), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [4833] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(312), 2, + STATE(317), 2, sym_shebangComment, sym_lineComment, - ACTIONS(489), 17, + ACTIONS(459), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -29978,7 +30397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(491), 22, + ACTIONS(461), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30001,7 +30420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [4893] = 23, + [5352] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30010,55 +30429,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + STATE(318), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(435), 17, anon_sym_as, - ACTIONS(857), 1, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + anon_sym_SLASH, + anon_sym_is, + sym_identifier, + ACTIONS(437), 22, + sym__open_subscript_bracket, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_BANG_BANG, - ACTIONS(861), 1, + anon_sym_DASH, anon_sym_STAR_STAR, - ACTIONS(863), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(873), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, anon_sym_PIPE_GT, + aux_sym_docComment_token1, + [5412] = 23, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(869), 1, + anon_sym_as, ACTIONS(877), 1, - anon_sym_is, + anon_sym_BANG_BANG, ACTIONS(881), 1, + anon_sym_STAR_STAR, + ACTIONS(883), 1, + anon_sym_QMARK_QMARK, + ACTIONS(891), 1, + anon_sym_AMP_AMP, + ACTIONS(893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(895), 1, + anon_sym_PIPE_GT, + ACTIONS(897), 1, + anon_sym_is, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(313), 2, + STATE(319), 2, sym_shebangComment, sym_lineComment, - ACTIONS(514), 5, + ACTIONS(556), 5, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(510), 11, + ACTIONS(554), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -30070,7 +30542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [4985] = 7, + [5504] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30079,10 +30551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(314), 2, + STATE(320), 2, sym_shebangComment, sym_lineComment, - ACTIONS(441), 17, + ACTIONS(447), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -30100,7 +30572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(443), 22, + ACTIONS(449), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30123,7 +30595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [5045] = 7, + [5564] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30132,10 +30604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(315), 2, + STATE(321), 2, sym_shebangComment, sym_lineComment, - ACTIONS(403), 17, + ACTIONS(427), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -30153,7 +30625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(405), 22, + ACTIONS(429), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30176,7 +30648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [5105] = 23, + [5624] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30185,58 +30657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, - anon_sym_as, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_QMARK_QMARK, - ACTIONS(871), 1, - anon_sym_AMP_AMP, - ACTIONS(873), 1, - anon_sym_PIPE_PIPE, - ACTIONS(875), 1, - anon_sym_PIPE_GT, - ACTIONS(877), 1, - anon_sym_is, - ACTIONS(881), 1, - sym__open_subscript_bracket, - ACTIONS(853), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(855), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(859), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(865), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(867), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(869), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(316), 2, + STATE(322), 2, sym_shebangComment, sym_lineComment, - ACTIONS(576), 5, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(574), 11, + ACTIONS(419), 17, + anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -30244,8 +30675,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - [5197] = 7, + ACTIONS(421), 22, + sym__open_subscript_bracket, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + aux_sym_docComment_token1, + [5684] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30254,17 +30710,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(317), 2, + ACTIONS(869), 1, + anon_sym_as, + ACTIONS(877), 1, + anon_sym_BANG_BANG, + ACTIONS(881), 1, + anon_sym_STAR_STAR, + ACTIONS(891), 1, + anon_sym_AMP_AMP, + ACTIONS(897), 1, + anon_sym_is, + ACTIONS(871), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(873), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(879), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(885), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(887), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(323), 2, sym_shebangComment, sym_lineComment, - ACTIONS(411), 17, - anon_sym_as, + ACTIONS(546), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -30272,10 +30752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - anon_sym_SLASH, - anon_sym_is, sym_identifier, - ACTIONS(413), 22, + ACTIONS(548), 11, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30283,22 +30761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [5257] = 7, + [5766] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30307,10 +30774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(318), 2, + STATE(324), 2, sym_shebangComment, sym_lineComment, - ACTIONS(469), 17, + ACTIONS(463), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -30328,7 +30795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(471), 22, + ACTIONS(465), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30351,7 +30818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [5317] = 7, + [5826] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30360,10 +30827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(319), 2, + STATE(325), 2, sym_shebangComment, sym_lineComment, - ACTIONS(457), 17, + ACTIONS(407), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -30381,7 +30848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(459), 22, + ACTIONS(409), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30404,7 +30871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [5377] = 7, + [5886] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30413,10 +30880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(320), 2, + STATE(326), 2, sym_shebangComment, sym_lineComment, - ACTIONS(445), 17, + ACTIONS(477), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -30434,7 +30901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(447), 22, + ACTIONS(479), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30457,7 +30924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [5437] = 23, + [5946] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30466,55 +30933,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(321), 2, + STATE(327), 2, sym_shebangComment, sym_lineComment, - ACTIONS(552), 5, + ACTIONS(580), 5, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(550), 11, + ACTIONS(578), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -30526,7 +30993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [5529] = 7, + [6038] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30535,10 +31002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(322), 2, + STATE(328), 2, sym_shebangComment, sym_lineComment, - ACTIONS(449), 17, + ACTIONS(473), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -30556,7 +31023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(451), 22, + ACTIONS(475), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30579,7 +31046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [5589] = 9, + [6098] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30588,65 +31055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - STATE(323), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(554), 17, - anon_sym_as, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - anon_sym_SLASH, - anon_sym_is, - sym_identifier, - ACTIONS(556), 20, - sym__open_subscript_bracket, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - aux_sym_docComment_token1, - [5653] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(324), 2, + STATE(329), 2, sym_shebangComment, sym_lineComment, - ACTIONS(433), 17, + ACTIONS(415), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -30664,7 +31076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(435), 22, + ACTIONS(417), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30687,7 +31099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [5713] = 7, + [6158] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30696,10 +31108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(325), 2, + STATE(330), 2, sym_shebangComment, sym_lineComment, - ACTIONS(473), 17, + ACTIONS(485), 17, anon_sym_as, anon_sym_class, anon_sym_typealias, @@ -30717,7 +31129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_is, sym_identifier, - ACTIONS(475), 22, + ACTIONS(487), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30740,7 +31152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [5773] = 16, + [6218] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30749,36 +31161,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, - anon_sym_as, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - ACTIONS(861), 1, - anon_sym_STAR_STAR, ACTIONS(877), 1, - anon_sym_is, - ACTIONS(853), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(855), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(859), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(865), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(867), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - STATE(326), 2, + anon_sym_BANG_BANG, + ACTIONS(881), 1, + anon_sym_STAR_STAR, + STATE(331), 2, sym_shebangComment, sym_lineComment, - ACTIONS(554), 11, + ACTIONS(570), 17, + anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -30786,8 +31183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - ACTIONS(556), 14, + ACTIONS(572), 20, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30795,14 +31194,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_DASH, anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [5851] = 19, + [6282] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30811,40 +31216,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + STATE(332), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(489), 17, anon_sym_as, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(871), 1, - anon_sym_AMP_AMP, - ACTIONS(873), 1, - anon_sym_PIPE_PIPE, - ACTIONS(877), 1, - anon_sym_is, - ACTIONS(853), 2, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(855), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(865), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(867), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(869), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(327), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(556), 10, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + anon_sym_SLASH, + anon_sym_is, + sym_identifier, + ACTIONS(491), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30852,22 +31245,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - ACTIONS(554), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [5935] = 18, + [6342] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30876,41 +31269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, - anon_sym_as, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(871), 1, - anon_sym_AMP_AMP, - ACTIONS(877), 1, - anon_sym_is, - ACTIONS(853), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(855), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(859), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(865), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(867), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(869), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(328), 2, + STATE(333), 2, sym_shebangComment, sym_lineComment, - ACTIONS(554), 11, + ACTIONS(395), 17, + anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -30918,8 +31287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - ACTIONS(556), 11, + ACTIONS(397), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30927,11 +31298,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [6017] = 17, + [6402] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -30940,39 +31322,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, - anon_sym_as, - ACTIONS(857), 1, - anon_sym_BANG_BANG, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(877), 1, - anon_sym_is, - ACTIONS(853), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(855), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(859), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(865), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(867), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(869), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(329), 2, + STATE(334), 2, sym_shebangComment, sym_lineComment, - ACTIONS(554), 11, + ACTIONS(403), 17, + anon_sym_as, anon_sym_class, anon_sym_typealias, anon_sym_function, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -30980,8 +31340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + anon_sym_SLASH, + anon_sym_is, sym_identifier, - ACTIONS(556), 12, + ACTIONS(405), 22, sym__open_subscript_bracket, ts_builtin_sym_end, anon_sym_LBRACE, @@ -30989,12 +31351,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, aux_sym_docComment_token1, - [6097] = 23, + [6462] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31003,54 +31375,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(330), 2, + STATE(335), 2, sym_shebangComment, sym_lineComment, - ACTIONS(883), 4, + ACTIONS(901), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(885), 11, + ACTIONS(903), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -31062,7 +31434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [6188] = 23, + [6553] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31071,54 +31443,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(331), 2, + STATE(336), 2, sym_shebangComment, sym_lineComment, - ACTIONS(887), 4, + ACTIONS(905), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(889), 11, + ACTIONS(907), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -31130,7 +31502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [6279] = 23, + [6644] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31139,54 +31511,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(332), 2, + STATE(337), 2, sym_shebangComment, sym_lineComment, - ACTIONS(891), 4, + ACTIONS(909), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(893), 11, + ACTIONS(911), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -31198,7 +31570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [6370] = 23, + [6735] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31207,54 +31579,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(333), 2, + STATE(338), 2, sym_shebangComment, sym_lineComment, - ACTIONS(895), 4, + ACTIONS(913), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(897), 11, + ACTIONS(915), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -31266,7 +31638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [6461] = 23, + [6826] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31275,54 +31647,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(334), 2, + STATE(339), 2, sym_shebangComment, sym_lineComment, - ACTIONS(899), 4, + ACTIONS(917), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(901), 11, + ACTIONS(919), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -31334,7 +31706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [6552] = 23, + [6917] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31343,54 +31715,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(335), 2, + STATE(340), 2, sym_shebangComment, sym_lineComment, - ACTIONS(903), 4, + ACTIONS(921), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(905), 11, + ACTIONS(923), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -31402,7 +31774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [6643] = 23, + [7008] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31411,54 +31783,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(336), 2, + STATE(341), 2, sym_shebangComment, sym_lineComment, - ACTIONS(907), 4, + ACTIONS(925), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(909), 11, + ACTIONS(927), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -31470,7 +31842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [6734] = 23, + [7099] = 23, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31479,54 +31851,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(851), 1, + ACTIONS(869), 1, anon_sym_as, - ACTIONS(857), 1, + ACTIONS(877), 1, anon_sym_BANG_BANG, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_STAR_STAR, - ACTIONS(863), 1, + ACTIONS(883), 1, anon_sym_QMARK_QMARK, - ACTIONS(871), 1, + ACTIONS(891), 1, anon_sym_AMP_AMP, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_PIPE_PIPE, - ACTIONS(875), 1, + ACTIONS(895), 1, anon_sym_PIPE_GT, - ACTIONS(877), 1, + ACTIONS(897), 1, anon_sym_is, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(853), 2, + ACTIONS(871), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(859), 2, + ACTIONS(875), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(879), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(865), 2, + ACTIONS(885), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(887), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(869), 2, + ACTIONS(889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(879), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(337), 2, + STATE(342), 2, sym_shebangComment, sym_lineComment, - ACTIONS(911), 4, + ACTIONS(929), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(913), 11, + ACTIONS(931), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -31538,55 +31910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [6825] = 10, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(355), 1, - anon_sym_LPAREN, - ACTIONS(357), 1, - anon_sym_QMARK, - ACTIONS(497), 1, - anon_sym_PIPE, - STATE(338), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(493), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(495), 24, - sym__open_subscript_bracket, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [6883] = 26, + [7190] = 26, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31611,97 +31935,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(915), 1, + ACTIONS(933), 1, ts_builtin_sym_end, - STATE(347), 1, + STATE(353), 1, aux_sym_module_repeat1, - STATE(398), 1, + STATE(414), 1, aux_sym_module_repeat2, - STATE(622), 1, - sym_docComment, STATE(623), 1, - aux_sym_moduleHeader_repeat1, - STATE(635), 1, - sym_methodHeader, - STATE(656), 1, - sym_annotation, - STATE(671), 1, - sym__moduleMember, - STATE(673), 1, - aux_sym_moduleClause_repeat1, - STATE(676), 1, - sym_modifier, - STATE(339), 2, - sym_shebangComment, - sym_lineComment, - STATE(637), 2, - sym_importClause, - sym_importGlobClause, - STATE(658), 4, - sym_clazz, - sym_typeAlias, - sym_classProperty, - sym_classMethod, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [6973] = 26, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(13), 1, - sym_identifier, - ACTIONS(21), 1, - anon_sym_import, - ACTIONS(23), 1, - anon_sym_import_STAR, - ACTIONS(25), 1, - anon_sym_class, - ACTIONS(27), 1, - anon_sym_typealias, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(35), 1, - aux_sym_docComment_token1, - ACTIONS(915), 1, - ts_builtin_sym_end, - STATE(398), 1, - aux_sym_module_repeat2, - STATE(551), 1, - aux_sym_module_repeat1, - STATE(622), 1, sym_docComment, - STATE(623), 1, + STATE(630), 1, aux_sym_moduleHeader_repeat1, - STATE(635), 1, + STATE(652), 1, sym_methodHeader, - STATE(656), 1, + STATE(659), 1, sym_annotation, - STATE(671), 1, + STATE(669), 1, sym__moduleMember, - STATE(673), 1, + STATE(677), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(340), 2, + STATE(343), 2, sym_shebangComment, sym_lineComment, - STATE(637), 2, + STATE(649), 2, sym_importClause, sym_importGlobClause, - STATE(658), 4, + STATE(663), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -31714,7 +31974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [7063] = 9, + [7280] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31723,14 +31983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(917), 1, + ACTIONS(935), 1, anon_sym_DOT, - STATE(344), 1, + STATE(351), 1, aux_sym_qualifiedIdentifier_repeat1, - STATE(341), 2, + STATE(344), 2, sym_shebangComment, sym_lineComment, - ACTIONS(287), 14, + ACTIONS(300), 14, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_LBRACE, @@ -31745,7 +32005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_docComment_token1, - ACTIONS(285), 15, + ACTIONS(298), 15, anon_sym_extends, anon_sym_amends, anon_sym_import, @@ -31761,7 +32021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [7119] = 26, + [7336] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31770,54 +32030,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(13), 1, - sym_identifier, - ACTIONS(21), 1, - anon_sym_import, - ACTIONS(23), 1, - anon_sym_import_STAR, - ACTIONS(25), 1, - anon_sym_class, - ACTIONS(27), 1, - anon_sym_typealias, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(35), 1, - aux_sym_docComment_token1, - ACTIONS(919), 1, - ts_builtin_sym_end, - STATE(348), 1, - aux_sym_module_repeat1, - STATE(405), 1, - aux_sym_module_repeat2, - STATE(622), 1, - sym_docComment, - STATE(623), 1, - aux_sym_moduleHeader_repeat1, - STATE(635), 1, - sym_methodHeader, - STATE(656), 1, - sym_annotation, - STATE(671), 1, - sym__moduleMember, - STATE(673), 1, - aux_sym_moduleClause_repeat1, - STATE(676), 1, - sym_modifier, - STATE(342), 2, + ACTIONS(343), 1, + anon_sym_LPAREN, + ACTIONS(345), 1, + anon_sym_QMARK, + ACTIONS(497), 1, + anon_sym_PIPE, + STATE(345), 2, sym_shebangComment, sym_lineComment, - STATE(637), 2, - sym_importClause, - sym_importGlobClause, - STATE(658), 4, - sym_clazz, - sym_typeAlias, - sym_classProperty, - sym_classMethod, - ACTIONS(33), 7, + ACTIONS(499), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(501), 24, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [7394] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(935), 1, + anon_sym_DOT, + STATE(344), 1, + aux_sym_qualifiedIdentifier_repeat1, + STATE(346), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(291), 14, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + aux_sym_docComment_token1, + ACTIONS(289), 15, + anon_sym_extends, + anon_sym_amends, + anon_sym_import, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -31825,7 +32115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [7209] = 15, + sym_identifier, + [7450] = 15, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31840,17 +32131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(281), 1, sym__open_argument_paren, - ACTIONS(283), 1, + ACTIONS(296), 1, anon_sym_COLON, - ACTIONS(921), 1, + ACTIONS(937), 1, anon_sym_RPAREN, - STATE(50), 1, + STATE(60), 1, sym_argumentList, - STATE(69), 1, + STATE(63), 1, sym_objectBody, - STATE(802), 1, + STATE(807), 1, sym_typeAnnotation, - STATE(343), 2, + STATE(347), 2, sym_shebangComment, sym_lineComment, ACTIONS(269), 4, @@ -31878,7 +32169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [7277] = 8, + [7518] = 26, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31887,35 +32178,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(924), 1, - anon_sym_DOT, - STATE(344), 3, - sym_shebangComment, - sym_lineComment, - aux_sym_qualifiedIdentifier_repeat1, - ACTIONS(300), 14, - ts_builtin_sym_end, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(21), 1, + anon_sym_import, + ACTIONS(23), 1, anon_sym_import_STAR, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(25), 1, + anon_sym_class, + ACTIONS(27), 1, + anon_sym_typealias, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(298), 15, - anon_sym_extends, - anon_sym_amends, + ACTIONS(940), 1, + ts_builtin_sym_end, + STATE(408), 1, + aux_sym_module_repeat2, + STATE(597), 1, + aux_sym_module_repeat1, + STATE(623), 1, + sym_docComment, + STATE(630), 1, + aux_sym_moduleHeader_repeat1, + STATE(652), 1, + sym_methodHeader, + STATE(659), 1, + sym_annotation, + STATE(669), 1, + sym__moduleMember, + STATE(677), 1, + aux_sym_moduleClause_repeat1, + STATE(681), 1, + sym_modifier, + STATE(348), 2, + sym_shebangComment, + sym_lineComment, + STATE(649), 2, + sym_importClause, + sym_importGlobClause, + STATE(663), 4, + sym_clazz, + sym_typeAlias, + sym_classProperty, + sym_classMethod, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [7608] = 26, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(21), 1, anon_sym_import, + ACTIONS(23), 1, + anon_sym_import_STAR, + ACTIONS(25), 1, anon_sym_class, + ACTIONS(27), 1, anon_sym_typealias, + ACTIONS(29), 1, anon_sym_function, - anon_sym_in, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(35), 1, + aux_sym_docComment_token1, + ACTIONS(933), 1, + ts_builtin_sym_end, + STATE(414), 1, + aux_sym_module_repeat2, + STATE(597), 1, + aux_sym_module_repeat1, + STATE(623), 1, + sym_docComment, + STATE(630), 1, + aux_sym_moduleHeader_repeat1, + STATE(652), 1, + sym_methodHeader, + STATE(659), 1, + sym_annotation, + STATE(669), 1, + sym__moduleMember, + STATE(677), 1, + aux_sym_moduleClause_repeat1, + STATE(681), 1, + sym_modifier, + STATE(349), 2, + sym_shebangComment, + sym_lineComment, + STATE(649), 2, + sym_importClause, + sym_importGlobClause, + STATE(663), 4, + sym_clazz, + sym_typeAlias, + sym_classProperty, + sym_classMethod, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -31923,8 +32297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [7331] = 10, + [7698] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31933,21 +32306,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(355), 1, + ACTIONS(343), 1, anon_sym_LPAREN, - ACTIONS(357), 1, + ACTIONS(345), 1, anon_sym_QMARK, ACTIONS(497), 1, anon_sym_PIPE, - STATE(345), 2, + STATE(350), 2, sym_shebangComment, sym_lineComment, - ACTIONS(499), 4, + ACTIONS(493), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(501), 24, + ACTIONS(495), 24, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -31972,7 +32345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [7389] = 9, + [7756] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -31981,14 +32354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(917), 1, + ACTIONS(942), 1, anon_sym_DOT, - STATE(341), 1, - aux_sym_qualifiedIdentifier_repeat1, - STATE(346), 2, + STATE(351), 3, sym_shebangComment, sym_lineComment, - ACTIONS(307), 14, + aux_sym_qualifiedIdentifier_repeat1, + ACTIONS(314), 14, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_LBRACE, @@ -32003,7 +32375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_docComment_token1, - ACTIONS(305), 15, + ACTIONS(312), 15, anon_sym_extends, anon_sym_amends, anon_sym_import, @@ -32019,7 +32391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [7445] = 26, + [7810] = 26, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32044,33 +32416,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(919), 1, + ACTIONS(940), 1, ts_builtin_sym_end, - STATE(405), 1, - aux_sym_module_repeat2, - STATE(551), 1, + STATE(349), 1, aux_sym_module_repeat1, - STATE(622), 1, - sym_docComment, + STATE(408), 1, + aux_sym_module_repeat2, STATE(623), 1, + sym_docComment, + STATE(630), 1, aux_sym_moduleHeader_repeat1, - STATE(635), 1, + STATE(652), 1, sym_methodHeader, - STATE(656), 1, + STATE(659), 1, sym_annotation, - STATE(671), 1, + STATE(669), 1, sym__moduleMember, - STATE(673), 1, + STATE(677), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(347), 2, + STATE(352), 2, sym_shebangComment, sym_lineComment, - STATE(637), 2, + STATE(649), 2, sym_importClause, sym_importGlobClause, - STATE(658), 4, + STATE(663), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -32083,7 +32455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [7535] = 26, + [7900] = 26, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32108,33 +32480,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(927), 1, + ACTIONS(945), 1, ts_builtin_sym_end, - STATE(407), 1, + STATE(413), 1, aux_sym_module_repeat2, - STATE(551), 1, + STATE(597), 1, aux_sym_module_repeat1, - STATE(622), 1, - sym_docComment, STATE(623), 1, + sym_docComment, + STATE(630), 1, aux_sym_moduleHeader_repeat1, - STATE(635), 1, + STATE(652), 1, sym_methodHeader, - STATE(656), 1, + STATE(659), 1, sym_annotation, - STATE(671), 1, + STATE(669), 1, sym__moduleMember, - STATE(673), 1, + STATE(677), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(348), 2, + STATE(353), 2, sym_shebangComment, sym_lineComment, - STATE(637), 2, + STATE(649), 2, sym_importClause, sym_importGlobClause, - STATE(658), 4, + STATE(663), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -32147,7 +32519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [7625] = 7, + [7990] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32156,10 +32528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(349), 2, + STATE(354), 2, sym_shebangComment, sym_lineComment, - ACTIONS(298), 15, + ACTIONS(312), 15, anon_sym_extends, anon_sym_amends, anon_sym_import, @@ -32175,7 +32547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(300), 15, + ACTIONS(314), 15, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_LBRACE, @@ -32191,7 +32563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, aux_sym_docComment_token1, - [7676] = 8, + [8041] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32200,28 +32572,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(929), 1, - anon_sym_DASH_GT, - STATE(350), 2, + ACTIONS(947), 1, + anon_sym_DOT, + STATE(357), 1, + aux_sym_qualifiedIdentifier_repeat1, + STATE(355), 2, sym_shebangComment, sym_lineComment, - ACTIONS(292), 7, + ACTIONS(289), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_DASH, anon_sym_SLASH, - ACTIONS(294), 21, + ACTIONS(291), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, @@ -32235,7 +32608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [7728] = 9, + [8095] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32244,21 +32617,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(931), 1, + ACTIONS(950), 1, anon_sym_DOT, - STATE(354), 1, - aux_sym_qualifiedIdentifier_repeat1, - STATE(351), 2, + STATE(356), 3, sym_shebangComment, sym_lineComment, - ACTIONS(285), 6, + aux_sym_qualifiedIdentifier_repeat1, + ACTIONS(312), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(287), 21, + ACTIONS(314), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -32280,7 +32652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [7782] = 9, + [8147] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32289,21 +32661,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(934), 1, + ACTIONS(953), 1, anon_sym_DOT, - STATE(351), 1, + STATE(356), 1, aux_sym_qualifiedIdentifier_repeat1, - STATE(352), 2, + STATE(357), 2, sym_shebangComment, sym_lineComment, - ACTIONS(305), 6, + ACTIONS(298), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(307), 21, + ACTIONS(300), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -32325,7 +32697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [7836] = 9, + [8201] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32334,20 +32706,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(937), 1, - anon_sym_LT, - STATE(377), 1, - sym_typeArgumentList, - STATE(353), 2, + ACTIONS(956), 1, + anon_sym_DASH_GT, + STATE(358), 2, sym_shebangComment, sym_lineComment, - ACTIONS(312), 5, + ACTIONS(283), 7, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, + anon_sym_LT, anon_sym_GT, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(314), 22, + ACTIONS(285), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -32356,7 +32728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, - anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, @@ -32370,7 +32741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [7890] = 8, + [8253] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32379,25 +32750,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(940), 1, - anon_sym_DOT, - STATE(354), 3, + ACTIONS(958), 1, + anon_sym_LT, + STATE(384), 1, + sym_typeArgumentList, + STATE(359), 2, sym_shebangComment, sym_lineComment, - aux_sym_qualifiedIdentifier_repeat1, - ACTIONS(298), 6, + ACTIONS(305), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(300), 21, + ACTIONS(307), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, anon_sym_DASH, @@ -32414,7 +32786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [7942] = 7, + [8307] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32423,22 +32795,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(355), 2, + ACTIONS(961), 1, + anon_sym_LBRACE, + ACTIONS(963), 1, + sym__open_argument_paren, + STATE(436), 1, + sym_argumentList, + STATE(443), 1, + sym_objectBody, + STATE(360), 2, sym_shebangComment, sym_lineComment, - ACTIONS(319), 6, + ACTIONS(269), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(271), 20, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [8364] = 17, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(471), 1, + anon_sym_BANG_BANG, + ACTIONS(965), 1, + anon_sym_as, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, + anon_sym_AMP_AMP, + ACTIONS(983), 1, + anon_sym_is, + ACTIONS(967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(969), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(979), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(361), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(548), 11, + sym__open_subscript_bracket, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + [8433] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(985), 1, + anon_sym_LPAREN, + ACTIONS(987), 1, anon_sym_QMARK, + STATE(362), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(383), 5, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(321), 22, + ACTIONS(385), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -32456,7 +32928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [7991] = 7, + [8486] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32465,17 +32937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(356), 2, + STATE(363), 2, sym_shebangComment, sym_lineComment, - ACTIONS(339), 6, + ACTIONS(359), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(341), 22, + ACTIONS(361), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -32498,7 +32970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8040] = 11, + [8535] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32507,34 +32979,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, - ACTIONS(945), 1, + ACTIONS(544), 1, + sym__open_subscript_bracket, + ACTIONS(965), 1, + anon_sym_as, + ACTIONS(973), 1, anon_sym_STAR_STAR, - ACTIONS(554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(943), 2, + ACTIONS(981), 1, + anon_sym_AMP_AMP, + ACTIONS(983), 1, + anon_sym_is, + ACTIONS(989), 1, + anon_sym_QMARK_QMARK, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, + anon_sym_PIPE_GT, + ACTIONS(522), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, + ACTIONS(969), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - STATE(357), 2, + ACTIONS(977), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(979), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(364), 2, sym_shebangComment, sym_lineComment, - ACTIONS(556), 20, - sym__open_subscript_bracket, - anon_sym_as, + ACTIONS(580), 5, anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_else, + [8614] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(365), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(379), 6, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(381), 22, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -32544,7 +33069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8097] = 12, + [8663] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32553,36 +33078,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, - anon_sym_BANG_BANG, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(554), 2, + ACTIONS(985), 1, + anon_sym_LPAREN, + ACTIONS(987), 1, + anon_sym_QMARK, + STATE(366), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(355), 5, + anon_sym_PIPE, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(943), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, + ACTIONS(357), 21, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, anon_sym_PLUS, - STATE(358), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [8716] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(985), 1, + anon_sym_LPAREN, + ACTIONS(987), 1, + anon_sym_QMARK, + STATE(367), 2, sym_shebangComment, sym_lineComment, - ACTIONS(556), 18, + ACTIONS(347), 5, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(349), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_else, + anon_sym_RBRACK_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_EQ, @@ -32591,7 +33157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8156] = 9, + [8769] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32600,24 +33166,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(951), 1, - anon_sym_LPAREN, - ACTIONS(953), 1, - anon_sym_QMARK, - STATE(359), 2, + STATE(368), 2, sym_shebangComment, sym_lineComment, - ACTIONS(379), 5, + ACTIONS(312), 6, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(381), 21, + ACTIONS(314), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -32635,7 +33199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8209] = 7, + [8818] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32644,17 +33208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(360), 2, + STATE(369), 2, sym_shebangComment, sym_lineComment, - ACTIONS(335), 6, + ACTIONS(323), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(337), 22, + ACTIONS(325), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -32677,7 +33241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8258] = 9, + [8867] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32686,29 +33250,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(985), 1, + anon_sym_LPAREN, + ACTIONS(987), 1, + anon_sym_QMARK, + ACTIONS(995), 1, + anon_sym_PIPE, + STATE(370), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(499), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(501), 21, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_BANG_BANG, - ACTIONS(945), 1, + anon_sym_DASH, anon_sym_STAR_STAR, - STATE(361), 2, + anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [8922] = 10, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(985), 1, + anon_sym_LPAREN, + ACTIONS(987), 1, + anon_sym_QMARK, + ACTIONS(995), 1, + anon_sym_PIPE, + STATE(371), 2, sym_shebangComment, sym_lineComment, - ACTIONS(554), 4, + ACTIONS(493), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(556), 22, + ACTIONS(495), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_else, + anon_sym_RBRACK_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, @@ -32721,7 +33331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8311] = 7, + [8977] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32730,17 +33340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(362), 2, + STATE(372), 2, sym_shebangComment, sym_lineComment, - ACTIONS(331), 6, + ACTIONS(375), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(333), 22, + ACTIONS(377), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -32763,7 +33373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8360] = 9, + [9026] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32772,24 +33382,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(951), 1, - anon_sym_LPAREN, - ACTIONS(953), 1, - anon_sym_QMARK, - STATE(363), 2, + STATE(373), 2, sym_shebangComment, sym_lineComment, - ACTIONS(363), 5, + ACTIONS(371), 6, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(365), 21, + ACTIONS(373), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -32807,7 +33415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8413] = 9, + [9075] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32816,24 +33424,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(951), 1, - anon_sym_LPAREN, - ACTIONS(953), 1, - anon_sym_QMARK, - STATE(364), 2, + STATE(374), 2, sym_shebangComment, sym_lineComment, - ACTIONS(351), 5, + ACTIONS(363), 6, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(353), 21, + ACTIONS(365), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -32851,7 +33457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8466] = 18, + [9124] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32860,103 +33466,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, - anon_sym_BANG_BANG, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, - anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(943), 2, + STATE(375), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(351), 6, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(961), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(365), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(556), 10, + anon_sym_SLASH, + ACTIONS(353), 22, sym__open_subscript_bracket, + anon_sym_as, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_else, + anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_GT, - [8537] = 17, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(415), 1, anon_sym_BANG_BANG, - ACTIONS(945), 1, + anon_sym_DASH, anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, - anon_sym_AMP_AMP, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(943), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(947), 2, + anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(959), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(366), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(556), 11, - sym__open_subscript_bracket, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - [8606] = 10, + anon_sym_is, + [9173] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -32965,25 +33508,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(951), 1, - anon_sym_LPAREN, - ACTIONS(953), 1, - anon_sym_QMARK, - ACTIONS(969), 1, - anon_sym_PIPE, - STATE(367), 2, + STATE(376), 2, sym_shebangComment, sym_lineComment, - ACTIONS(499), 4, + ACTIONS(367), 6, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(501), 21, + ACTIONS(369), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -33001,7 +33541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8661] = 10, + [9222] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33010,21 +33550,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(951), 1, + ACTIONS(985), 1, anon_sym_LPAREN, - ACTIONS(953), 1, + ACTIONS(987), 1, anon_sym_QMARK, - ACTIONS(969), 1, - anon_sym_PIPE, - STATE(368), 2, + STATE(377), 2, sym_shebangComment, sym_lineComment, - ACTIONS(493), 4, + ACTIONS(387), 5, + anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(495), 21, + ACTIONS(389), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -33046,58 +33585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8716] = 16, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(415), 1, - anon_sym_BANG_BANG, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(943), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(959), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(961), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(369), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(556), 12, - sym__open_subscript_bracket, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_QMARK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - [8783] = 7, + [9275] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33106,17 +33594,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(370), 2, + STATE(378), 2, sym_shebangComment, sym_lineComment, - ACTIONS(298), 6, + ACTIONS(319), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(300), 22, + ACTIONS(321), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -33139,7 +33627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [8832] = 15, + [9324] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33148,33 +33636,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(967), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, + anon_sym_AMP_AMP, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(943), 2, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - STATE(371), 2, + ACTIONS(979), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(379), 2, sym_shebangComment, sym_lineComment, - ACTIONS(556), 14, + ACTIONS(548), 10, sym__open_subscript_bracket, anon_sym_LBRACE, anon_sym_RBRACK, @@ -33184,12 +33679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - [8897] = 22, + [9395] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33198,55 +33689,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(372), 2, + STATE(380), 2, sym_shebangComment, sym_lineComment, - ACTIONS(576), 5, + ACTIONS(552), 5, anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_else, - [8976] = 9, + [9474] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33255,97 +33746,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(951), 1, - anon_sym_LPAREN, - ACTIONS(953), 1, - anon_sym_QMARK, - STATE(373), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(367), 5, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(369), 21, + ACTIONS(471), 1, + anon_sym_BANG_BANG, + ACTIONS(544), 1, sym__open_subscript_bracket, + ACTIONS(965), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [9029] = 20, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(415), 1, - anon_sym_BANG_BANG, - ACTIONS(945), 1, + ACTIONS(973), 1, anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(943), 2, + ACTIONS(522), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(374), 2, + STATE(381), 2, sym_shebangComment, sym_lineComment, - ACTIONS(548), 8, - sym__open_subscript_bracket, + ACTIONS(576), 5, anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_else, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [9104] = 22, + [9553] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33354,55 +33803,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, - ACTIONS(544), 1, - sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, - anon_sym_AMP_AMP, ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(971), 1, - anon_sym_QMARK_QMARK, + anon_sym_as, ACTIONS(973), 1, - anon_sym_PIPE_GT, - ACTIONS(522), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(943), 2, + anon_sym_STAR_STAR, + ACTIONS(983), 1, + anon_sym_is, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(375), 2, + STATE(382), 2, sym_shebangComment, sym_lineComment, - ACTIONS(552), 5, + ACTIONS(548), 12, + sym__open_subscript_bracket, anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_else, - [9183] = 7, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + [9620] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33411,27 +33854,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(376), 2, + ACTIONS(471), 1, + anon_sym_BANG_BANG, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + STATE(383), 2, sym_shebangComment, sym_lineComment, - ACTIONS(387), 6, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(570), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(389), 22, + ACTIONS(572), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, @@ -33444,7 +33889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [9232] = 7, + [9673] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33453,17 +33898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(377), 2, + STATE(384), 2, sym_shebangComment, sym_lineComment, - ACTIONS(359), 6, + ACTIONS(327), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(361), 22, + ACTIONS(329), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -33486,7 +33931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [9281] = 9, + [9722] = 15, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33495,21 +33940,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, - ACTIONS(945), 1, + ACTIONS(965), 1, + anon_sym_as, + ACTIONS(973), 1, anon_sym_STAR_STAR, - STATE(378), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(546), 4, + ACTIONS(983), 1, + anon_sym_is, + ACTIONS(967), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(548), 22, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(385), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(548), 14, sym__open_subscript_bracket, - anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_COMMA, @@ -33517,20 +33975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_DASH, anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - anon_sym_is, - [9334] = 7, + [9787] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33539,22 +33990,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(379), 2, + ACTIONS(985), 1, + anon_sym_LPAREN, + ACTIONS(987), 1, + anon_sym_QMARK, + STATE(386), 2, sym_shebangComment, sym_lineComment, - ACTIONS(343), 6, - anon_sym_QMARK, + ACTIONS(339), 5, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(345), 22, + ACTIONS(341), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_BANG_BANG, @@ -33572,7 +34025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [9383] = 22, + [9840] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33581,55 +34034,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(380), 2, + STATE(387), 2, sym_shebangComment, sym_lineComment, - ACTIONS(580), 5, + ACTIONS(584), 5, anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_else, - [9462] = 9, + [9919] = 20, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33638,172 +34091,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(951), 1, - anon_sym_LPAREN, - ACTIONS(953), 1, - anon_sym_QMARK, - STATE(381), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(375), 5, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(377), 21, - sym__open_subscript_bracket, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(471), 1, anon_sym_BANG_BANG, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [9515] = 11, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(975), 1, - anon_sym_LBRACE, - ACTIONS(977), 1, - sym__open_argument_paren, - STATE(444), 1, - sym_argumentList, - STATE(467), 1, - sym_objectBody, - STATE(382), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(269), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(271), 20, - sym__open_subscript_bracket, + ACTIONS(965), 1, anon_sym_as, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, + ACTIONS(973), 1, anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(981), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, + ACTIONS(983), 1, anon_sym_is, - [9572] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(383), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(323), 6, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(325), 22, - sym__open_subscript_bracket, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, + ACTIONS(989), 1, + anon_sym_QMARK_QMARK, + ACTIONS(991), 1, anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - anon_sym_is, - [9621] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(384), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(327), 6, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(967), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(329), 22, - sym__open_subscript_bracket, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, + ACTIONS(971), 2, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, + anon_sym_PLUS, + ACTIONS(975), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [9670] = 22, + STATE(388), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(572), 8, + sym__open_subscript_bracket, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [9994] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33812,55 +34146,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(385), 2, + STATE(389), 2, sym_shebangComment, sym_lineComment, - ACTIONS(572), 5, + ACTIONS(556), 5, anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_else, - [9749] = 22, + [10073] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33869,46 +34203,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(386), 2, + STATE(390), 2, sym_shebangComment, sym_lineComment, ACTIONS(568), 5, @@ -33917,7 +34251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_else, - [9828] = 22, + [10152] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33926,55 +34260,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(387), 2, + STATE(391), 2, sym_shebangComment, sym_lineComment, - ACTIONS(564), 5, + ACTIONS(560), 5, anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_else, - [9907] = 7, + [10231] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -33983,30 +34317,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(388), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(347), 6, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_STAR, + ACTIONS(471), 1, + anon_sym_BANG_BANG, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(546), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(967), 2, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(349), 22, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + STATE(392), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(548), 20, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -34016,7 +34354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [9956] = 22, + [10288] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34025,55 +34363,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, - anon_sym_BANG_BANG, - ACTIONS(544), 1, + STATE(393), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(335), 6, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(337), 22, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, anon_sym_as, - ACTIONS(963), 1, - anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(971), 1, - anon_sym_QMARK_QMARK, - ACTIONS(973), 1, - anon_sym_PIPE_GT, - ACTIONS(522), 2, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(947), 2, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(959), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(389), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(584), 5, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_else, - [10035] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [10337] = 12, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34082,55 +34405,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, - ACTIONS(544), 1, - sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, - anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(971), 1, - anon_sym_QMARK_QMARK, ACTIONS(973), 1, - anon_sym_PIPE_GT, - ACTIONS(522), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(943), 2, + anon_sym_STAR_STAR, + ACTIONS(546), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, + ACTIONS(971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(959), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(961), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(390), 2, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + STATE(394), 2, sym_shebangComment, sym_lineComment, - ACTIONS(514), 5, + ACTIONS(548), 18, + sym__open_subscript_bracket, + anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_else, - [10114] = 7, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [10396] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34139,27 +34452,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(391), 2, + ACTIONS(471), 1, + anon_sym_BANG_BANG, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + STATE(395), 2, sym_shebangComment, sym_lineComment, - ACTIONS(371), 6, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(546), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(373), 22, + ACTIONS(548), 22, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, @@ -34172,7 +34487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [10163] = 7, + [10449] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34181,39 +34496,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(392), 2, + ACTIONS(471), 1, + anon_sym_BANG_BANG, + ACTIONS(544), 1, + sym__open_subscript_bracket, + ACTIONS(965), 1, + anon_sym_as, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, + anon_sym_AMP_AMP, + ACTIONS(983), 1, + anon_sym_is, + ACTIONS(989), 1, + anon_sym_QMARK_QMARK, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, + anon_sym_PIPE_GT, + ACTIONS(522), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(969), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(979), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(396), 2, sym_shebangComment, sym_lineComment, - ACTIONS(329), 13, - ts_builtin_sym_end, - anon_sym_import_STAR, + ACTIONS(514), 5, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_GT, - aux_sym_docComment_token1, - ACTIONS(327), 14, - anon_sym_import, - anon_sym_as, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [10211] = 9, + anon_sym_else, + [10528] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34222,19 +34553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(977), 1, + ACTIONS(963), 1, sym__open_argument_paren, - STATE(431), 1, + STATE(421), 1, sym_argumentList, - STATE(393), 2, + STATE(397), 2, sym_shebangComment, sym_lineComment, - ACTIONS(383), 4, + ACTIONS(331), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(385), 21, + ACTIONS(333), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -34256,7 +34587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [10263] = 7, + [10580] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34265,10 +34596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(394), 2, + STATE(398), 2, sym_shebangComment, sym_lineComment, - ACTIONS(373), 13, + ACTIONS(321), 13, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_LBRACE, @@ -34282,7 +34613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - ACTIONS(371), 14, + ACTIONS(319), 14, anon_sym_import, anon_sym_as, anon_sym_class, @@ -34297,7 +34628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [10311] = 9, + [10628] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34306,14 +34637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(979), 1, + ACTIONS(997), 1, anon_sym_LT, - STATE(455), 1, + STATE(437), 1, sym_typeArgumentList, - STATE(395), 2, + STATE(399), 2, sym_shebangComment, sym_lineComment, - ACTIONS(312), 12, + ACTIONS(305), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -34326,7 +34657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(314), 13, + ACTIONS(307), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34340,161 +34671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [10363] = 9, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(981), 1, - anon_sym_DOT, - STATE(406), 1, - aux_sym_qualifiedIdentifier_repeat1, - STATE(396), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(287), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LT, - aux_sym_docComment_token1, - ACTIONS(285), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [10414] = 24, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(415), 1, - anon_sym_BANG_BANG, - ACTIONS(544), 1, - sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, - anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(971), 1, - anon_sym_QMARK_QMARK, - ACTIONS(973), 1, - anon_sym_PIPE_GT, - ACTIONS(983), 1, - anon_sym_COMMA, - ACTIONS(985), 1, - anon_sym_RPAREN, - STATE(927), 1, - aux_sym_constrainedType_repeat1, - ACTIONS(522), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(943), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(959), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(961), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(397), 2, - sym_shebangComment, - sym_lineComment, - [10495] = 22, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(13), 1, - sym_identifier, - ACTIONS(25), 1, - anon_sym_class, - ACTIONS(27), 1, - anon_sym_typealias, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(35), 1, - aux_sym_docComment_token1, - ACTIONS(919), 1, - ts_builtin_sym_end, - STATE(400), 1, - aux_sym_module_repeat2, - STATE(622), 1, - sym_docComment, - STATE(623), 1, - aux_sym_moduleHeader_repeat1, - STATE(635), 1, - sym_methodHeader, - STATE(656), 1, - sym_annotation, - STATE(671), 1, - sym__moduleMember, - STATE(673), 1, - aux_sym_moduleClause_repeat1, - STATE(676), 1, - sym_modifier, - STATE(398), 2, - sym_shebangComment, - sym_lineComment, - STATE(658), 4, - sym_clazz, - sym_typeAlias, - sym_classProperty, - sym_classMethod, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [10572] = 24, + [10680] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34503,101 +34680,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, - anon_sym_BANG_BANG, - ACTIONS(544), 1, - sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, - anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(971), 1, - anon_sym_QMARK_QMARK, - ACTIONS(973), 1, - anon_sym_PIPE_GT, - ACTIONS(983), 1, - anon_sym_COMMA, - ACTIONS(987), 1, - anon_sym_RPAREN, - STATE(922), 1, - aux_sym_constrainedType_repeat1, - ACTIONS(522), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(943), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(959), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(961), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(399), 2, + STATE(400), 2, sym_shebangComment, sym_lineComment, - [10653] = 21, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(989), 1, + ACTIONS(377), 13, ts_builtin_sym_end, - ACTIONS(991), 1, - sym_identifier, - ACTIONS(994), 1, + anon_sym_import_STAR, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + ACTIONS(375), 14, + anon_sym_import, + anon_sym_as, anon_sym_class, - ACTIONS(997), 1, anon_sym_typealias, - ACTIONS(1000), 1, anon_sym_function, - ACTIONS(1003), 1, - anon_sym_AT, - ACTIONS(1009), 1, - aux_sym_docComment_token1, - STATE(622), 1, - sym_docComment, - STATE(623), 1, - aux_sym_moduleHeader_repeat1, - STATE(635), 1, - sym_methodHeader, - STATE(656), 1, - sym_annotation, - STATE(671), 1, - sym__moduleMember, - STATE(673), 1, - aux_sym_moduleClause_repeat1, - STATE(676), 1, - sym_modifier, - STATE(400), 3, - sym_shebangComment, - sym_lineComment, - aux_sym_module_repeat2, - STATE(658), 4, - sym_clazz, - sym_typeAlias, - sym_classProperty, - sym_classMethod, - ACTIONS(1006), 7, + anon_sym_in, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -34605,6 +34711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, + sym_identifier, [10728] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, @@ -34614,9 +34721,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(975), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - STATE(460), 1, + STATE(440), 1, sym_objectBody, STATE(401), 2, sym_shebangComment, @@ -34647,7 +34754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [10779] = 24, + [10779] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34656,71 +34763,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, - anon_sym_BANG_BANG, - ACTIONS(544), 1, - sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, - anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(971), 1, - anon_sym_QMARK_QMARK, - ACTIONS(973), 1, - anon_sym_PIPE_GT, - ACTIONS(983), 1, - anon_sym_COMMA, - ACTIONS(1012), 1, - anon_sym_RPAREN, - STATE(888), 1, - aux_sym_constrainedType_repeat1, - ACTIONS(522), 2, + ACTIONS(999), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(943), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(959), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(961), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(402), 2, + STATE(402), 3, sym_shebangComment, sym_lineComment, - [10860] = 9, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(981), 1, - anon_sym_DOT, - STATE(396), 1, aux_sym_qualifiedIdentifier_repeat1, - STATE(403), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(307), 10, + ACTIONS(314), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34731,7 +34780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, aux_sym_docComment_token1, - ACTIONS(305), 14, + ACTIONS(312), 14, anon_sym_module, anon_sym_extends, anon_sym_amends, @@ -34746,7 +34795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [10911] = 24, + [10828] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34755,55 +34804,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(983), 1, + ACTIONS(1002), 1, anon_sym_COMMA, - ACTIONS(1014), 1, + ACTIONS(1004), 1, anon_sym_RPAREN, - STATE(917), 1, + STATE(899), 1, aux_sym_constrainedType_repeat1, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(404), 2, + STATE(403), 2, sym_shebangComment, sym_lineComment, - [10992] = 22, + [10909] = 21, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34812,45 +34861,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(13), 1, + ACTIONS(1006), 1, + ts_builtin_sym_end, + ACTIONS(1008), 1, sym_identifier, - ACTIONS(25), 1, + ACTIONS(1011), 1, anon_sym_class, - ACTIONS(27), 1, + ACTIONS(1014), 1, anon_sym_typealias, - ACTIONS(29), 1, + ACTIONS(1017), 1, anon_sym_function, - ACTIONS(31), 1, + ACTIONS(1020), 1, anon_sym_AT, - ACTIONS(35), 1, + ACTIONS(1026), 1, aux_sym_docComment_token1, - ACTIONS(927), 1, - ts_builtin_sym_end, - STATE(400), 1, - aux_sym_module_repeat2, - STATE(622), 1, - sym_docComment, STATE(623), 1, + sym_docComment, + STATE(630), 1, aux_sym_moduleHeader_repeat1, - STATE(635), 1, + STATE(652), 1, sym_methodHeader, - STATE(656), 1, + STATE(659), 1, sym_annotation, - STATE(671), 1, + STATE(669), 1, sym__moduleMember, - STATE(673), 1, + STATE(677), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(405), 2, + STATE(404), 3, sym_shebangComment, sym_lineComment, - STATE(658), 4, + aux_sym_module_repeat2, + STATE(663), 4, sym_clazz, sym_typeAlias, sym_classProperty, sym_classMethod, - ACTIONS(33), 7, + ACTIONS(1023), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -34858,7 +34906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [11069] = 8, + [10984] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34867,39 +34915,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1016), 1, + ACTIONS(471), 1, + anon_sym_BANG_BANG, + ACTIONS(544), 1, + sym__open_subscript_bracket, + ACTIONS(965), 1, + anon_sym_as, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, + anon_sym_AMP_AMP, + ACTIONS(983), 1, + anon_sym_is, + ACTIONS(989), 1, + anon_sym_QMARK_QMARK, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, + anon_sym_PIPE_GT, + ACTIONS(1002), 1, + anon_sym_COMMA, + ACTIONS(1029), 1, + anon_sym_RPAREN, + STATE(901), 1, + aux_sym_constrainedType_repeat1, + ACTIONS(522), 2, anon_sym_DOT, - STATE(406), 3, + anon_sym_QMARK_DOT, + ACTIONS(967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(969), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(979), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(405), 2, sym_shebangComment, sym_lineComment, - aux_sym_qualifiedIdentifier_repeat1, - ACTIONS(300), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LT, - aux_sym_docComment_token1, - ACTIONS(298), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [11118] = 22, + [11065] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34920,28 +34984,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(1019), 1, + ACTIONS(940), 1, ts_builtin_sym_end, - STATE(400), 1, + STATE(404), 1, aux_sym_module_repeat2, - STATE(622), 1, - sym_docComment, STATE(623), 1, + sym_docComment, + STATE(630), 1, aux_sym_moduleHeader_repeat1, - STATE(635), 1, + STATE(652), 1, sym_methodHeader, - STATE(656), 1, + STATE(659), 1, sym_annotation, - STATE(671), 1, + STATE(669), 1, sym__moduleMember, - STATE(673), 1, + STATE(677), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(407), 2, + STATE(406), 2, sym_shebangComment, sym_lineComment, - STATE(658), 4, + STATE(663), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -34954,7 +35018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [11195] = 24, + [11142] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -34963,55 +35027,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(983), 1, + ACTIONS(1002), 1, anon_sym_COMMA, - ACTIONS(1021), 1, + ACTIONS(1031), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(922), 1, aux_sym_constrainedType_repeat1, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(408), 2, + STATE(407), 2, sym_shebangComment, sym_lineComment, - [11276] = 22, + [11223] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35032,28 +35096,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(915), 1, + ACTIONS(933), 1, ts_builtin_sym_end, - STATE(400), 1, + STATE(404), 1, aux_sym_module_repeat2, - STATE(622), 1, - sym_docComment, STATE(623), 1, + sym_docComment, + STATE(630), 1, aux_sym_moduleHeader_repeat1, - STATE(635), 1, + STATE(652), 1, sym_methodHeader, - STATE(656), 1, + STATE(659), 1, sym_annotation, - STATE(671), 1, + STATE(669), 1, sym__moduleMember, - STATE(673), 1, + STATE(677), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(409), 2, + STATE(408), 2, sym_shebangComment, sym_lineComment, - STATE(658), 4, + STATE(663), 4, sym_clazz, sym_typeAlias, sym_classProperty, @@ -35066,7 +35130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [11353] = 24, + [11300] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35075,112 +35139,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, - anon_sym_AMP_AMP, ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(971), 1, - anon_sym_QMARK_QMARK, + anon_sym_as, ACTIONS(973), 1, - anon_sym_PIPE_GT, - ACTIONS(983), 1, - anon_sym_COMMA, - ACTIONS(1023), 1, - anon_sym_RPAREN, - STATE(896), 1, - aux_sym_constrainedType_repeat1, - ACTIONS(522), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(943), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(959), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(961), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(410), 2, - sym_shebangComment, - sym_lineComment, - [11434] = 24, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(415), 1, - anon_sym_BANG_BANG, - ACTIONS(544), 1, - sym__open_subscript_bracket, - ACTIONS(945), 1, anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(983), 1, + ACTIONS(1002), 1, anon_sym_COMMA, - ACTIONS(1025), 1, + ACTIONS(1033), 1, anon_sym_RPAREN, - STATE(894), 1, + STATE(927), 1, aux_sym_constrainedType_repeat1, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(411), 2, + STATE(409), 2, sym_shebangComment, sym_lineComment, - [11515] = 7, + [11381] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35189,37 +35196,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(412), 2, + ACTIONS(1035), 1, + anon_sym_DOT, + STATE(402), 1, + aux_sym_qualifiedIdentifier_repeat1, + STATE(410), 2, sym_shebangComment, sym_lineComment, - ACTIONS(391), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(393), 21, - sym__open_subscript_bracket, - anon_sym_as, + ACTIONS(300), 10, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [11561] = 7, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_LT, + aux_sym_docComment_token1, + ACTIONS(298), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [11432] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35228,76 +35238,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(413), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(437), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(439), 21, + ACTIONS(471), 1, + anon_sym_BANG_BANG, + ACTIONS(544), 1, sym__open_subscript_bracket, + ACTIONS(965), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, + ACTIONS(973), 1, anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(981), 1, anon_sym_AMP_AMP, + ACTIONS(983), 1, + anon_sym_is, + ACTIONS(989), 1, + anon_sym_QMARK_QMARK, + ACTIONS(991), 1, anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - anon_sym_is, - [11607] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(414), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(453), 4, + ACTIONS(1002), 1, + anon_sym_COMMA, + ACTIONS(1037), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_constrainedType_repeat1, + ACTIONS(522), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(967), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(455), 21, - sym__open_subscript_bracket, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, + ACTIONS(971), 2, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, + anon_sym_PLUS, + ACTIONS(975), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [11653] = 7, + STATE(411), 2, + sym_shebangComment, + sym_lineComment, + [11513] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35306,10 +35295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(415), 2, + ACTIONS(1035), 1, + anon_sym_DOT, + STATE(410), 1, + aux_sym_qualifiedIdentifier_repeat1, + STATE(412), 2, sym_shebangComment, sym_lineComment, - ACTIONS(300), 11, + ACTIONS(291), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35319,9 +35312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT, aux_sym_docComment_token1, - ACTIONS(298), 14, + ACTIONS(289), 14, anon_sym_module, anon_sym_extends, anon_sym_amends, @@ -35335,8 +35327,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [11699] = 15, + sym_identifier, + [11564] = 22, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(25), 1, + anon_sym_class, + ACTIONS(27), 1, + anon_sym_typealias, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(35), 1, + aux_sym_docComment_token1, + ACTIONS(1039), 1, + ts_builtin_sym_end, + STATE(404), 1, + aux_sym_module_repeat2, + STATE(623), 1, + sym_docComment, + STATE(630), 1, + aux_sym_moduleHeader_repeat1, + STATE(652), 1, + sym_methodHeader, + STATE(659), 1, + sym_annotation, + STATE(669), 1, + sym__moduleMember, + STATE(677), 1, + aux_sym_moduleClause_repeat1, + STATE(681), 1, + sym_modifier, + STATE(413), 2, + sym_shebangComment, + sym_lineComment, + STATE(663), 4, + sym_clazz, + sym_typeAlias, + sym_classProperty, + sym_classMethod, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [11641] = 22, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(25), 1, + anon_sym_class, + ACTIONS(27), 1, + anon_sym_typealias, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(35), 1, + aux_sym_docComment_token1, + ACTIONS(945), 1, + ts_builtin_sym_end, + STATE(404), 1, + aux_sym_module_repeat2, + STATE(623), 1, + sym_docComment, + STATE(630), 1, + aux_sym_moduleHeader_repeat1, + STATE(652), 1, + sym_methodHeader, + STATE(659), 1, + sym_annotation, + STATE(669), 1, + sym__moduleMember, + STATE(677), 1, + aux_sym_moduleClause_repeat1, + STATE(681), 1, + sym_modifier, + STATE(414), 2, + sym_shebangComment, + sym_lineComment, + STATE(663), 4, + sym_clazz, + sym_typeAlias, + sym_classProperty, + sym_classMethod, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [11718] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35345,45 +35447,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, - anon_sym_as, - ACTIONS(1033), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, - ACTIONS(1037), 1, + ACTIONS(544), 1, + sym__open_subscript_bracket, + ACTIONS(965), 1, + anon_sym_as, + ACTIONS(973), 1, anon_sym_STAR_STAR, - ACTIONS(1043), 1, + ACTIONS(981), 1, + anon_sym_AMP_AMP, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(1029), 2, + ACTIONS(989), 1, + anon_sym_QMARK_QMARK, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, + anon_sym_PIPE_GT, + ACTIONS(1002), 1, + anon_sym_COMMA, + ACTIONS(1041), 1, + anon_sym_RPAREN, + STATE(893), 1, + aux_sym_constrainedType_repeat1, + ACTIONS(522), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + ACTIONS(971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1039), 2, + ACTIONS(975), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - STATE(416), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(556), 11, - sym__open_subscript_bracket, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_QMARK_QMARK, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - [11761] = 20, + STATE(415), 2, + sym_shebangComment, + sym_lineComment, + [11799] = 24, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35392,50 +35504,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, - anon_sym_as, - ACTIONS(1033), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, - ACTIONS(1037), 1, + ACTIONS(544), 1, + sym__open_subscript_bracket, + ACTIONS(965), 1, + anon_sym_as, + ACTIONS(973), 1, anon_sym_STAR_STAR, - ACTIONS(1043), 1, + ACTIONS(981), 1, + anon_sym_AMP_AMP, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(1045), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(1049), 1, - anon_sym_AMP_AMP, - ACTIONS(1051), 1, + ACTIONS(991), 1, anon_sym_PIPE_PIPE, - ACTIONS(1053), 1, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1029), 2, + ACTIONS(1002), 1, + anon_sym_COMMA, + ACTIONS(1043), 1, + anon_sym_RPAREN, + STATE(932), 1, + aux_sym_constrainedType_repeat1, + ACTIONS(522), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + ACTIONS(971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1039), 2, + ACTIONS(975), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(417), 2, + STATE(416), 2, sym_shebangComment, sym_lineComment, - ACTIONS(548), 5, - sym__open_subscript_bracket, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [11833] = 9, + [11880] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35444,26 +35561,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1033), 1, - anon_sym_BANG_BANG, - ACTIONS(1037), 1, - anon_sym_STAR_STAR, - STATE(418), 2, + STATE(417), 2, sym_shebangComment, sym_lineComment, - ACTIONS(546), 4, + ACTIONS(411), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(548), 19, + ACTIONS(413), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, @@ -35476,7 +35591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [11883] = 7, + [11926] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35485,15 +35600,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(419), 2, + STATE(418), 2, sym_shebangComment, sym_lineComment, - ACTIONS(417), 4, + ACTIONS(439), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(419), 21, + ACTIONS(441), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -35515,7 +35630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [11929] = 9, + [11972] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35524,39 +35639,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, - anon_sym_LPAREN, + ACTIONS(1045), 1, + anon_sym_as, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, ACTIONS(1057), 1, - anon_sym_QMARK, - STATE(420), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(353), 11, - ts_builtin_sym_end, + anon_sym_STAR_STAR, + ACTIONS(1059), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1067), 1, + anon_sym_AMP_AMP, + ACTIONS(1069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1071), 1, + anon_sym_PIPE_GT, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1075), 1, + sym__open_subscript_bracket, + ACTIONS(514), 2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_PIPE, + anon_sym_RBRACK_RBRACK, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1049), 2, + anon_sym_LT, anon_sym_GT, - aux_sym_docComment_token1, - ACTIONS(351), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [11979] = 7, + ACTIONS(1051), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1055), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1061), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(1063), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(419), 2, + sym_shebangComment, + sym_lineComment, + [12048] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35565,37 +35693,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(421), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(411), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(413), 21, - sym__open_subscript_bracket, + ACTIONS(1045), 1, anon_sym_as, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + ACTIONS(1059), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1067), 1, + anon_sym_AMP_AMP, + ACTIONS(1069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1071), 1, + anon_sym_PIPE_GT, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1075), 1, + sym__open_subscript_bracket, + ACTIONS(584), 2, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, + ACTIONS(1055), 2, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, + anon_sym_PLUS, + ACTIONS(1061), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(1063), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [12025] = 7, + STATE(420), 2, + sym_shebangComment, + sym_lineComment, + [12124] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35604,15 +35747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(422), 2, + STATE(421), 2, sym_shebangComment, sym_lineComment, - ACTIONS(407), 4, + ACTIONS(481), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(409), 21, + ACTIONS(483), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -35634,7 +35777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [12071] = 8, + [12170] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35643,17 +35786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_BANG_BANG, - STATE(423), 2, + STATE(422), 2, sym_shebangComment, sym_lineComment, - ACTIONS(411), 4, + ACTIONS(427), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(413), 20, + ACTIONS(429), 20, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -35674,7 +35817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [12119] = 11, + [12218] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35683,31 +35826,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1033), 1, - anon_sym_BANG_BANG, - ACTIONS(1037), 1, - anon_sym_STAR_STAR, - ACTIONS(554), 2, + STATE(423), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(427), 4, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1029), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1039), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - STATE(424), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(556), 17, + ACTIONS(429), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -35717,7 +35856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [12173] = 22, + [12264] = 15, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35726,150 +35865,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, - anon_sym_as, - ACTIONS(1033), 1, - anon_sym_BANG_BANG, - ACTIONS(1037), 1, - anon_sym_STAR_STAR, - ACTIONS(1043), 1, - anon_sym_is, ACTIONS(1045), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1049), 1, - anon_sym_AMP_AMP, - ACTIONS(1051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1053), 1, - anon_sym_PIPE_GT, - ACTIONS(1061), 1, - sym__open_subscript_bracket, - ACTIONS(572), 2, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - ACTIONS(1029), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1031), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1035), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1039), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(1041), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1047), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1059), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(425), 2, - sym_shebangComment, - sym_lineComment, - [12249] = 22, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1027), 1, anon_sym_as, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_BANG_BANG, - ACTIONS(1037), 1, + ACTIONS(1057), 1, anon_sym_STAR_STAR, - ACTIONS(1043), 1, + ACTIONS(1073), 1, anon_sym_is, - ACTIONS(1045), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1049), 1, - anon_sym_AMP_AMP, - ACTIONS(1051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1053), 1, - anon_sym_PIPE_GT, - ACTIONS(1061), 1, - sym__open_subscript_bracket, - ACTIONS(580), 2, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - ACTIONS(1029), 2, + ACTIONS(1047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 2, + ACTIONS(1049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + ACTIONS(1055), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1039), 2, + ACTIONS(1061), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + ACTIONS(1063), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1059), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(426), 2, - sym_shebangComment, - sym_lineComment, - [12325] = 12, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1033), 1, - anon_sym_BANG_BANG, - ACTIONS(1037), 1, - anon_sym_STAR_STAR, - ACTIONS(554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1029), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1035), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1039), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - STATE(427), 2, + STATE(424), 2, sym_shebangComment, sym_lineComment, - ACTIONS(556), 15, + ACTIONS(548), 11, sym__open_subscript_bracket, - anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_QMARK_QMARK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - anon_sym_is, - [12381] = 9, + [12326] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35878,26 +35912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1033), 1, - anon_sym_BANG_BANG, - ACTIONS(1037), 1, - anon_sym_STAR_STAR, - STATE(428), 2, + STATE(425), 2, sym_shebangComment, sym_lineComment, - ACTIONS(554), 4, + ACTIONS(473), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(556), 19, + ACTIONS(475), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, @@ -35910,61 +35942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [12431] = 22, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1027), 1, - anon_sym_as, - ACTIONS(1033), 1, - anon_sym_BANG_BANG, - ACTIONS(1037), 1, - anon_sym_STAR_STAR, - ACTIONS(1043), 1, - anon_sym_is, - ACTIONS(1045), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1049), 1, - anon_sym_AMP_AMP, - ACTIONS(1051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1053), 1, - anon_sym_PIPE_GT, - ACTIONS(1061), 1, - sym__open_subscript_bracket, - ACTIONS(552), 2, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - ACTIONS(1029), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1031), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1035), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1039), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(1041), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1047), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1059), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(429), 2, - sym_shebangComment, - sym_lineComment, - [12507] = 7, + [12372] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -35973,15 +35951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(430), 2, + STATE(426), 2, sym_shebangComment, sym_lineComment, - ACTIONS(457), 4, + ACTIONS(489), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(459), 21, + ACTIONS(491), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -36003,7 +35981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [12553] = 7, + [12418] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36012,15 +35990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(431), 2, + STATE(427), 2, sym_shebangComment, sym_lineComment, - ACTIONS(441), 4, + ACTIONS(463), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(443), 21, + ACTIONS(465), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -36042,7 +36020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [12599] = 22, + [12464] = 20, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36051,52 +36029,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, + ACTIONS(1045), 1, anon_sym_as, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_BANG_BANG, - ACTIONS(1037), 1, + ACTIONS(1057), 1, anon_sym_STAR_STAR, - ACTIONS(1043), 1, - anon_sym_is, - ACTIONS(1045), 1, + ACTIONS(1059), 1, anon_sym_QMARK_QMARK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1051), 1, + ACTIONS(1069), 1, anon_sym_PIPE_PIPE, - ACTIONS(1053), 1, + ACTIONS(1071), 1, anon_sym_PIPE_GT, - ACTIONS(1061), 1, - sym__open_subscript_bracket, - ACTIONS(584), 2, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - ACTIONS(1029), 2, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 2, + ACTIONS(1049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + ACTIONS(1055), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1039), 2, + ACTIONS(1061), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + ACTIONS(1063), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, + ACTIONS(1065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1059), 2, + STATE(428), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(572), 5, + sym__open_subscript_bracket, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(432), 2, + [12536] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1077), 1, + anon_sym_LPAREN, + ACTIONS(1079), 1, + anon_sym_QMARK, + STATE(429), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(349), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + ACTIONS(347), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [12586] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(430), 2, sym_shebangComment, sym_lineComment, - [12675] = 7, + ACTIONS(314), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT, + aux_sym_docComment_token1, + ACTIONS(312), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [12632] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36105,15 +36161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(433), 2, + STATE(431), 2, sym_shebangComment, sym_lineComment, - ACTIONS(489), 4, + ACTIONS(427), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(491), 21, + ACTIONS(429), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -36135,7 +36191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [12721] = 7, + [12678] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36144,37 +36200,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(434), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(485), 4, + ACTIONS(1045), 1, + anon_sym_as, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1047), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1049), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - ACTIONS(487), 21, - sym__open_subscript_bracket, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, + ACTIONS(1055), 2, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, + anon_sym_PLUS, + ACTIONS(1061), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(1063), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + STATE(432), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(548), 9, + sym__open_subscript_bracket, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_QMARK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - anon_sym_is, - [12767] = 7, + [12742] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36183,9 +36248,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(435), 2, + ACTIONS(1077), 1, + anon_sym_LPAREN, + ACTIONS(1079), 1, + anon_sym_QMARK, + STATE(433), 2, sym_shebangComment, sym_lineComment, + ACTIONS(341), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, ACTIONS(339), 12, anon_sym_class, anon_sym_typealias, @@ -36199,7 +36280,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(341), 13, + [12792] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(434), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(335), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(337), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36213,7 +36319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [12813] = 22, + [12838] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36222,52 +36328,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, - anon_sym_as, - ACTIONS(1033), 1, - anon_sym_BANG_BANG, - ACTIONS(1037), 1, - anon_sym_STAR_STAR, - ACTIONS(1043), 1, - anon_sym_is, - ACTIONS(1045), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1049), 1, - anon_sym_AMP_AMP, - ACTIONS(1051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1053), 1, - anon_sym_PIPE_GT, - ACTIONS(1061), 1, - sym__open_subscript_bracket, - ACTIONS(514), 2, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - ACTIONS(1029), 2, + STATE(435), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(391), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1031), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + anon_sym_SLASH, + ACTIONS(393), 21, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1039), 2, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1059), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(436), 2, - sym_shebangComment, - sym_lineComment, - [12889] = 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [12884] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36276,15 +36367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(437), 2, + STATE(436), 2, sym_shebangComment, sym_lineComment, - ACTIONS(425), 4, + ACTIONS(431), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(427), 21, + ACTIONS(433), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -36306,7 +36397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [12935] = 7, + [12930] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36315,10 +36406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(438), 2, + STATE(437), 2, sym_shebangComment, sym_lineComment, - ACTIONS(343), 12, + ACTIONS(327), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -36331,7 +36422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(345), 13, + ACTIONS(329), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36345,7 +36436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [12981] = 17, + [12976] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36354,47 +36445,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, - anon_sym_as, - ACTIONS(1033), 1, - anon_sym_BANG_BANG, - ACTIONS(1037), 1, - anon_sym_STAR_STAR, - ACTIONS(1043), 1, - anon_sym_is, - ACTIONS(1049), 1, - anon_sym_AMP_AMP, - ACTIONS(1029), 2, + STATE(438), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(447), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1031), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + anon_sym_SLASH, + ACTIONS(449), 21, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1039), 2, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [13022] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, STATE(439), 2, sym_shebangComment, sym_lineComment, - ACTIONS(556), 8, + ACTIONS(477), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(479), 21, sym__open_subscript_bracket, + anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - [13047] = 22, + anon_sym_is, + [13068] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36403,52 +36523,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, - anon_sym_as, - ACTIONS(1033), 1, - anon_sym_BANG_BANG, - ACTIONS(1037), 1, - anon_sym_STAR_STAR, - ACTIONS(1043), 1, - anon_sym_is, - ACTIONS(1045), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1049), 1, - anon_sym_AMP_AMP, - ACTIONS(1051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1053), 1, - anon_sym_PIPE_GT, - ACTIONS(1061), 1, - sym__open_subscript_bracket, - ACTIONS(564), 2, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - ACTIONS(1029), 2, + STATE(440), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(423), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1031), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + anon_sym_SLASH, + ACTIONS(425), 21, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1039), 2, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1059), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(440), 2, - sym_shebangComment, - sym_lineComment, - [13123] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [13114] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36457,91 +36562,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, + ACTIONS(1045), 1, anon_sym_as, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_BANG_BANG, - ACTIONS(1037), 1, + ACTIONS(1057), 1, anon_sym_STAR_STAR, - ACTIONS(1043), 1, - anon_sym_is, - ACTIONS(1045), 1, + ACTIONS(1059), 1, anon_sym_QMARK_QMARK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1051), 1, + ACTIONS(1069), 1, anon_sym_PIPE_PIPE, - ACTIONS(1053), 1, + ACTIONS(1071), 1, anon_sym_PIPE_GT, - ACTIONS(1061), 1, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1075), 1, sym__open_subscript_bracket, - ACTIONS(568), 2, + ACTIONS(560), 2, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, - ACTIONS(1029), 2, + ACTIONS(1047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 2, + ACTIONS(1049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + ACTIONS(1051), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1055), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1039), 2, + ACTIONS(1061), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + ACTIONS(1063), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, + ACTIONS(1065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1059), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, STATE(441), 2, sym_shebangComment, sym_lineComment, - [13199] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(442), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(347), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(349), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_GT, - aux_sym_docComment_token1, - [13245] = 22, + [13190] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36550,52 +36616,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, + ACTIONS(1045), 1, anon_sym_as, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_BANG_BANG, - ACTIONS(1037), 1, + ACTIONS(1057), 1, anon_sym_STAR_STAR, - ACTIONS(1043), 1, - anon_sym_is, - ACTIONS(1045), 1, + ACTIONS(1059), 1, anon_sym_QMARK_QMARK, - ACTIONS(1049), 1, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1051), 1, + ACTIONS(1069), 1, anon_sym_PIPE_PIPE, - ACTIONS(1053), 1, + ACTIONS(1071), 1, anon_sym_PIPE_GT, - ACTIONS(1061), 1, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1075), 1, sym__open_subscript_bracket, - ACTIONS(576), 2, + ACTIONS(552), 2, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, - ACTIONS(1029), 2, + ACTIONS(1047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 2, + ACTIONS(1049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + ACTIONS(1051), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1055), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1039), 2, + ACTIONS(1061), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + ACTIONS(1063), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, + ACTIONS(1065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1059), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(443), 2, + STATE(442), 2, sym_shebangComment, sym_lineComment, - [13321] = 7, + [13266] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36604,15 +36670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(444), 2, + STATE(443), 2, sym_shebangComment, sym_lineComment, - ACTIONS(395), 4, + ACTIONS(443), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(397), 21, + ACTIONS(445), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -36634,7 +36700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [13367] = 18, + [13312] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36643,48 +36709,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, + ACTIONS(1045), 1, anon_sym_as, - ACTIONS(1033), 1, + ACTIONS(1053), 1, anon_sym_BANG_BANG, - ACTIONS(1037), 1, + ACTIONS(1057), 1, anon_sym_STAR_STAR, - ACTIONS(1043), 1, - anon_sym_is, - ACTIONS(1049), 1, + ACTIONS(1059), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(1051), 1, + ACTIONS(1069), 1, anon_sym_PIPE_PIPE, - ACTIONS(1029), 2, + ACTIONS(1071), 1, + anon_sym_PIPE_GT, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1075), 1, + sym__open_subscript_bracket, + ACTIONS(568), 2, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + ACTIONS(1047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 2, + ACTIONS(1049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + ACTIONS(1051), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1055), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1039), 2, + ACTIONS(1061), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + ACTIONS(1063), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, + ACTIONS(1065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(445), 2, + STATE(444), 2, sym_shebangComment, sym_lineComment, - ACTIONS(556), 7, - sym__open_subscript_bracket, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_GT, - [13435] = 9, + [13388] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36693,14 +36763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - STATE(446), 2, + STATE(445), 2, sym_shebangComment, sym_lineComment, - ACTIONS(369), 11, + ACTIONS(385), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36712,7 +36782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - ACTIONS(367), 12, + ACTIONS(383), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -36725,7 +36795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [13485] = 7, + [13438] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36734,37 +36804,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(447), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(481), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(483), 21, - sym__open_subscript_bracket, + ACTIONS(1045), 1, anon_sym_as, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + ACTIONS(1059), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1067), 1, + anon_sym_AMP_AMP, + ACTIONS(1069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1071), 1, + anon_sym_PIPE_GT, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1075), 1, + sym__open_subscript_bracket, + ACTIONS(576), 2, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, + ACTIONS(1055), 2, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, + anon_sym_PLUS, + ACTIONS(1061), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(1063), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [13531] = 7, + STATE(446), 2, + sym_shebangComment, + sym_lineComment, + [13514] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(447), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(351), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(353), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + [13560] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(448), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(367), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(369), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + [13606] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(449), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(371), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(373), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + [13652] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36773,15 +36975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(448), 2, + STATE(450), 2, sym_shebangComment, sym_lineComment, - ACTIONS(433), 4, + ACTIONS(455), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(435), 21, + ACTIONS(457), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -36803,7 +37005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [13577] = 7, + [13698] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36812,15 +37014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(449), 2, + STATE(451), 2, sym_shebangComment, sym_lineComment, - ACTIONS(473), 4, + ACTIONS(467), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(475), 21, + ACTIONS(469), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -36842,7 +37044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [13623] = 7, + [13744] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36851,37 +37053,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(450), 2, + STATE(452), 2, sym_shebangComment, sym_lineComment, - ACTIONS(421), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(423), 21, - sym__open_subscript_bracket, - anon_sym_as, + ACTIONS(379), 12, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_in, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + ACTIONS(381), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [13669] = 9, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_GT, + aux_sym_docComment_token1, + [13790] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36890,14 +37092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - STATE(451), 2, + STATE(453), 2, sym_shebangComment, sym_lineComment, - ACTIONS(365), 11, + ACTIONS(357), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36909,7 +37111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - ACTIONS(363), 12, + ACTIONS(355), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -36922,7 +37124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [13719] = 7, + [13840] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -36931,24 +37133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(452), 2, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + STATE(454), 2, sym_shebangComment, sym_lineComment, - ACTIONS(411), 4, + ACTIONS(570), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(413), 21, + ACTIONS(572), 19, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, @@ -36961,48 +37165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [13765] = 9, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1055), 1, - anon_sym_LPAREN, - ACTIONS(1057), 1, - anon_sym_QMARK, - STATE(453), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(377), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_GT, - aux_sym_docComment_token1, - ACTIONS(375), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [13815] = 7, + [13890] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37011,7 +37174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(454), 2, + STATE(455), 2, sym_shebangComment, sym_lineComment, ACTIONS(323), 12, @@ -37041,7 +37204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [13861] = 7, + [13936] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37050,49 +37213,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(455), 2, + ACTIONS(1077), 1, + anon_sym_LPAREN, + ACTIONS(1079), 1, + anon_sym_QMARK, + STATE(456), 2, sym_shebangComment, sym_lineComment, - ACTIONS(359), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(361), 13, + ACTIONS(389), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_AT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH_GT, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [13907] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(456), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(331), 12, + ACTIONS(387), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -37105,21 +37245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(333), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_GT, - aux_sym_docComment_token1, - [13953] = 7, + [13986] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37128,37 +37254,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + ACTIONS(546), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1061), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, STATE(457), 2, sym_shebangComment, sym_lineComment, - ACTIONS(319), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - ACTIONS(321), 13, - ts_builtin_sym_end, + ACTIONS(548), 17, + sym__open_subscript_bracket, + anon_sym_as, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_GT, - aux_sym_docComment_token1, - [13999] = 7, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [14040] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37170,7 +37300,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(458), 2, sym_shebangComment, sym_lineComment, - ACTIONS(335), 12, + ACTIONS(359), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -37183,7 +37313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(337), 13, + ACTIONS(361), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37197,7 +37327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [14045] = 7, + [14086] = 12, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37206,10 +37336,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + ACTIONS(546), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1055), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1061), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, STATE(459), 2, sym_shebangComment, sym_lineComment, - ACTIONS(387), 12, + ACTIONS(548), 15, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [14142] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(460), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(363), 12, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -37222,7 +37396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - ACTIONS(389), 13, + ACTIONS(365), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37236,7 +37410,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, aux_sym_docComment_token1, - [14091] = 7, + [14188] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(461), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(451), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(453), 21, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [14234] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + STATE(462), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(546), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(548), 19, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [14284] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(463), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(459), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + ACTIONS(461), 21, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_is, + [14330] = 22, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1045), 1, + anon_sym_as, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + ACTIONS(1059), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1067), 1, + anon_sym_AMP_AMP, + ACTIONS(1069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1071), 1, + anon_sym_PIPE_GT, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1075), 1, + sym__open_subscript_bracket, + ACTIONS(556), 2, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1055), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1061), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(1063), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(464), 2, + sym_shebangComment, + sym_lineComment, + [14406] = 17, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1045), 1, + anon_sym_as, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + ACTIONS(1067), 1, + anon_sym_AMP_AMP, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1055), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1061), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(1063), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(465), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(548), 8, + sym__open_subscript_bracket, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + [14472] = 18, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1045), 1, + anon_sym_as, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + ACTIONS(1067), 1, + anon_sym_AMP_AMP, + ACTIONS(1069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1055), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1061), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(1063), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(466), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(548), 7, + sym__open_subscript_bracket, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_GT, + [14540] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37245,15 +37691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(460), 2, + STATE(467), 2, sym_shebangComment, sym_lineComment, - ACTIONS(429), 4, + ACTIONS(415), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(431), 21, + ACTIONS(417), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -37275,7 +37721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [14137] = 7, + [14586] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37284,15 +37730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(461), 2, + STATE(468), 2, sym_shebangComment, sym_lineComment, - ACTIONS(465), 4, + ACTIONS(399), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(467), 21, + ACTIONS(401), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -37314,7 +37760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [14183] = 7, + [14632] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37323,37 +37769,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(462), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(403), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(405), 21, - sym__open_subscript_bracket, + ACTIONS(1045), 1, anon_sym_as, + ACTIONS(1053), 1, + anon_sym_BANG_BANG, + ACTIONS(1057), 1, + anon_sym_STAR_STAR, + ACTIONS(1059), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1067), 1, + anon_sym_AMP_AMP, + ACTIONS(1069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1071), 1, + anon_sym_PIPE_GT, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1075), 1, + sym__open_subscript_bracket, + ACTIONS(580), 2, anon_sym_LBRACE, anon_sym_RBRACK_RBRACK, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1051), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, + ACTIONS(1055), 2, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, + anon_sym_PLUS, + ACTIONS(1061), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(1063), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [14229] = 7, + STATE(469), 2, + sym_shebangComment, + sym_lineComment, + [14708] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37362,15 +37823,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(463), 2, + STATE(470), 2, sym_shebangComment, sym_lineComment, - ACTIONS(449), 4, + ACTIONS(395), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(451), 21, + ACTIONS(397), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -37392,7 +37853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [14275] = 9, + [14754] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37401,87 +37862,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, - anon_sym_LPAREN, - ACTIONS(1057), 1, - anon_sym_QMARK, - STATE(464), 2, + STATE(471), 2, sym_shebangComment, sym_lineComment, - ACTIONS(381), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_GT, - aux_sym_docComment_token1, - ACTIONS(379), 12, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_in, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [14325] = 16, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1027), 1, - anon_sym_as, - ACTIONS(1033), 1, - anon_sym_BANG_BANG, - ACTIONS(1037), 1, - anon_sym_STAR_STAR, - ACTIONS(1043), 1, - anon_sym_is, - ACTIONS(1029), 2, + ACTIONS(403), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1031), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + anon_sym_SLASH, + ACTIONS(405), 21, + sym__open_subscript_bracket, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_BANG_BANG, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1039), 2, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(465), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(556), 9, - sym__open_subscript_bracket, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_QMARK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, - [14389] = 7, + anon_sym_is, + [14800] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37490,37 +37901,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(466), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(477), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(479), 21, + ACTIONS(471), 1, + anon_sym_BANG_BANG, + ACTIONS(544), 1, sym__open_subscript_bracket, + ACTIONS(965), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACK_RBRACK, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, + anon_sym_AMP_AMP, + ACTIONS(983), 1, + anon_sym_is, + ACTIONS(989), 1, + anon_sym_QMARK_QMARK, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, + anon_sym_PIPE_GT, + ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_BANG_BANG, + ACTIONS(967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(969), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(971), 2, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, + anon_sym_PLUS, + ACTIONS(975), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_GT, - anon_sym_is, - [14435] = 7, + ACTIONS(1081), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(472), 2, + sym_shebangComment, + sym_lineComment, + [14876] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37529,15 +37955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(467), 2, + STATE(473), 2, sym_shebangComment, sym_lineComment, - ACTIONS(461), 4, + ACTIONS(485), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(463), 21, + ACTIONS(487), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -37559,7 +37985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [14481] = 7, + [14922] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37568,15 +37994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(468), 2, + STATE(474), 2, sym_shebangComment, sym_lineComment, - ACTIONS(399), 4, + ACTIONS(419), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(401), 21, + ACTIONS(421), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -37598,7 +38024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [14527] = 7, + [14968] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37607,15 +38033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(469), 2, + STATE(475), 2, sym_shebangComment, sym_lineComment, - ACTIONS(469), 4, + ACTIONS(435), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(471), 21, + ACTIONS(437), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -37637,7 +38063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [14573] = 7, + [15014] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37646,15 +38072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(470), 2, + STATE(476), 2, sym_shebangComment, sym_lineComment, - ACTIONS(445), 4, + ACTIONS(407), 4, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - ACTIONS(447), 21, + ACTIONS(409), 21, sym__open_subscript_bracket, anon_sym_as, anon_sym_LBRACE, @@ -37676,7 +38102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_GT, anon_sym_is, - [14619] = 22, + [15060] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37685,105 +38111,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, - anon_sym_AMP_AMP, ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(971), 1, - anon_sym_QMARK_QMARK, + anon_sym_as, ACTIONS(973), 1, - anon_sym_PIPE_GT, - ACTIONS(522), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(943), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(959), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(961), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1063), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(471), 2, - sym_shebangComment, - sym_lineComment, - [14695] = 22, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(415), 1, - anon_sym_BANG_BANG, - ACTIONS(544), 1, - sym__open_subscript_bracket, - ACTIONS(945), 1, anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1065), 1, + ACTIONS(1083), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(472), 2, + STATE(477), 2, sym_shebangComment, sym_lineComment, - [14770] = 22, + [15135] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37792,51 +38164,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1067), 1, + ACTIONS(1085), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(473), 2, + STATE(478), 2, sym_shebangComment, sym_lineComment, - [14845] = 22, + [15210] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37845,51 +38217,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1069), 1, - anon_sym_RPAREN, + ACTIONS(1087), 1, + anon_sym_else, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(474), 2, + STATE(479), 2, sym_shebangComment, sym_lineComment, - [14920] = 22, + [15285] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37898,51 +38270,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1071), 1, - anon_sym_else, + ACTIONS(1089), 1, + anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(475), 2, + STATE(480), 2, sym_shebangComment, sym_lineComment, - [14995] = 22, + [15360] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -37951,51 +38323,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1073), 1, + ACTIONS(1091), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(476), 2, + STATE(481), 2, sym_shebangComment, sym_lineComment, - [15070] = 22, + [15435] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38004,51 +38376,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1075), 1, + ACTIONS(1093), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(477), 2, + STATE(482), 2, sym_shebangComment, sym_lineComment, - [15145] = 22, + [15510] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38057,51 +38429,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1077), 1, - anon_sym_RPAREN, + ACTIONS(1095), 1, + anon_sym_else, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(478), 2, + STATE(483), 2, sym_shebangComment, sym_lineComment, - [15220] = 22, + [15585] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38110,51 +38482,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1079), 1, - anon_sym_RPAREN, + ACTIONS(1097), 1, + anon_sym_RBRACK, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(479), 2, + STATE(484), 2, sym_shebangComment, sym_lineComment, - [15295] = 22, + [15660] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38163,51 +38535,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1081), 1, + ACTIONS(1099), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(480), 2, + STATE(485), 2, sym_shebangComment, sym_lineComment, - [15370] = 22, + [15735] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38216,51 +38588,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1083), 1, + ACTIONS(1101), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(481), 2, + STATE(486), 2, sym_shebangComment, sym_lineComment, - [15445] = 22, + [15810] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38269,51 +38641,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1085), 1, + ACTIONS(1103), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(482), 2, + STATE(487), 2, sym_shebangComment, sym_lineComment, - [15520] = 22, + [15885] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38322,51 +38694,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1087), 1, - anon_sym_else, + ACTIONS(1105), 1, + anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(483), 2, + STATE(488), 2, sym_shebangComment, sym_lineComment, - [15595] = 22, + [15960] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38375,51 +38747,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1089), 1, - anon_sym_RPAREN, + ACTIONS(1107), 1, + anon_sym_else, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(484), 2, + STATE(489), 2, sym_shebangComment, sym_lineComment, - [15670] = 22, + [16035] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38428,51 +38800,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1091), 1, + ACTIONS(1109), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(485), 2, + STATE(490), 2, sym_shebangComment, sym_lineComment, - [15745] = 22, + [16110] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38481,51 +38853,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1093), 1, + ACTIONS(1111), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(486), 2, + STATE(491), 2, sym_shebangComment, sym_lineComment, - [15820] = 22, + [16185] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38534,51 +38906,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1095), 1, + ACTIONS(1113), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(487), 2, + STATE(492), 2, sym_shebangComment, sym_lineComment, - [15895] = 22, + [16260] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38587,51 +38959,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1097), 1, - anon_sym_RPAREN, + ACTIONS(1115), 1, + anon_sym_RBRACK, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(488), 2, + STATE(493), 2, sym_shebangComment, sym_lineComment, - [15970] = 22, + [16335] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38640,51 +39012,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1099), 1, + ACTIONS(1117), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(489), 2, + STATE(494), 2, sym_shebangComment, sym_lineComment, - [16045] = 22, + [16410] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38693,51 +39065,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1101), 1, + ACTIONS(1119), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(490), 2, + STATE(495), 2, sym_shebangComment, sym_lineComment, - [16120] = 22, + [16485] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38746,51 +39118,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1103), 1, + ACTIONS(1121), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(491), 2, + STATE(496), 2, sym_shebangComment, sym_lineComment, - [16195] = 22, + [16560] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38799,51 +39171,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(1045), 1, + anon_sym_as, + ACTIONS(1053), 1, anon_sym_BANG_BANG, - ACTIONS(544), 1, - sym__open_subscript_bracket, - ACTIONS(945), 1, + ACTIONS(1057), 1, anon_sym_STAR_STAR, - ACTIONS(955), 1, - anon_sym_as, - ACTIONS(963), 1, + ACTIONS(1059), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1067), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, + ACTIONS(1069), 1, anon_sym_PIPE_PIPE, - ACTIONS(967), 1, - anon_sym_is, - ACTIONS(971), 1, - anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(1071), 1, anon_sym_PIPE_GT, - ACTIONS(1105), 1, - anon_sym_RPAREN, - ACTIONS(522), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(1073), 1, + anon_sym_is, + ACTIONS(1075), 1, + sym__open_subscript_bracket, + ACTIONS(1123), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(1047), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(1049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(1051), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1055), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1061), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(1063), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(1065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(492), 2, + STATE(497), 2, sym_shebangComment, sym_lineComment, - [16270] = 22, + [16635] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38852,51 +39224,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1107), 1, + ACTIONS(1125), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(493), 2, + STATE(498), 2, sym_shebangComment, sym_lineComment, - [16345] = 22, + [16710] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38905,51 +39277,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1109), 1, + ACTIONS(1127), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(494), 2, + STATE(499), 2, sym_shebangComment, sym_lineComment, - [16420] = 22, + [16785] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -38958,51 +39330,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1111), 1, - anon_sym_RBRACK, + ACTIONS(1129), 1, + anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(495), 2, + STATE(500), 2, sym_shebangComment, sym_lineComment, - [16495] = 22, + [16860] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39011,51 +39383,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1113), 1, - anon_sym_RBRACK, + ACTIONS(1131), 1, + anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(496), 2, + STATE(501), 2, sym_shebangComment, sym_lineComment, - [16570] = 22, + [16935] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39064,51 +39436,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1115), 1, + ACTIONS(1133), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(497), 2, + STATE(502), 2, sym_shebangComment, sym_lineComment, - [16645] = 22, + [17010] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39117,51 +39489,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1117), 1, + ACTIONS(1135), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(498), 2, + STATE(503), 2, sym_shebangComment, sym_lineComment, - [16720] = 22, + [17085] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39170,51 +39542,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1119), 1, - anon_sym_else, + ACTIONS(1137), 1, + anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(499), 2, + STATE(504), 2, sym_shebangComment, sym_lineComment, - [16795] = 22, + [17160] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39223,51 +39595,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1121), 1, - anon_sym_RBRACK, + ACTIONS(1139), 1, + anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(500), 2, + STATE(505), 2, sym_shebangComment, sym_lineComment, - [16870] = 22, + [17235] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39276,51 +39648,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1027), 1, - anon_sym_as, - ACTIONS(1033), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, - ACTIONS(1037), 1, + ACTIONS(544), 1, + sym__open_subscript_bracket, + ACTIONS(965), 1, + anon_sym_as, + ACTIONS(973), 1, anon_sym_STAR_STAR, - ACTIONS(1043), 1, + ACTIONS(981), 1, + anon_sym_AMP_AMP, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(1045), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(1049), 1, - anon_sym_AMP_AMP, - ACTIONS(1051), 1, + ACTIONS(991), 1, anon_sym_PIPE_PIPE, - ACTIONS(1053), 1, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1061), 1, - sym__open_subscript_bracket, - ACTIONS(1123), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(1029), 2, + ACTIONS(1141), 1, + anon_sym_RBRACK, + ACTIONS(522), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 2, + ACTIONS(971), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1039), 2, + ACTIONS(975), 2, anon_sym_TILDE_SLASH, anon_sym_PERCENT, - ACTIONS(1041), 2, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1047), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1059), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(501), 2, + STATE(506), 2, sym_shebangComment, sym_lineComment, - [16945] = 22, + [17310] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39329,51 +39701,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1125), 1, + ACTIONS(1143), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(502), 2, + STATE(507), 2, sym_shebangComment, sym_lineComment, - [17020] = 22, + [17385] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39382,51 +39754,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1127), 1, + ACTIONS(1145), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(503), 2, + STATE(508), 2, sym_shebangComment, sym_lineComment, - [17095] = 22, + [17460] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39435,51 +39807,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1129), 1, + ACTIONS(1147), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(504), 2, + STATE(509), 2, sym_shebangComment, sym_lineComment, - [17170] = 22, + [17535] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39488,51 +39860,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1131), 1, - anon_sym_else, + ACTIONS(1149), 1, + anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(505), 2, + STATE(510), 2, sym_shebangComment, sym_lineComment, - [17245] = 22, + [17610] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39541,51 +39913,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1133), 1, + ACTIONS(1151), 1, anon_sym_RBRACK, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(506), 2, + STATE(511), 2, sym_shebangComment, sym_lineComment, - [17320] = 22, + [17685] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39594,51 +39966,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1135), 1, - anon_sym_RPAREN, + ACTIONS(1153), 1, + anon_sym_else, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(507), 2, + STATE(512), 2, sym_shebangComment, sym_lineComment, - [17395] = 22, + [17760] = 22, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39647,51 +40019,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(945), 1, - anon_sym_STAR_STAR, - ACTIONS(955), 1, + ACTIONS(965), 1, anon_sym_as, - ACTIONS(963), 1, + ACTIONS(973), 1, + anon_sym_STAR_STAR, + ACTIONS(981), 1, anon_sym_AMP_AMP, - ACTIONS(965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(967), 1, + ACTIONS(983), 1, anon_sym_is, - ACTIONS(971), 1, + ACTIONS(989), 1, anon_sym_QMARK_QMARK, - ACTIONS(973), 1, + ACTIONS(991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(993), 1, anon_sym_PIPE_GT, - ACTIONS(1137), 1, + ACTIONS(1155), 1, anon_sym_RPAREN, ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(943), 2, + ACTIONS(967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(947), 2, - anon_sym_TILDE_SLASH, - anon_sym_PERCENT, - ACTIONS(949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(957), 2, + ACTIONS(969), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 2, + ACTIONS(971), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(975), 2, + anon_sym_TILDE_SLASH, + anon_sym_PERCENT, + ACTIONS(977), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(961), 2, + ACTIONS(979), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(508), 2, + STATE(513), 2, sym_shebangComment, sym_lineComment, - [17470] = 21, + [17835] = 21, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39700,7 +40072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(415), 1, + ACTIONS(471), 1, anon_sym_BANG_BANG, ACTIONS(526), 1, anon_sym_STAR_STAR, @@ -39714,9 +40086,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, ACTIONS(544), 1, sym__open_subscript_bracket, - ACTIONS(1139), 1, + ACTIONS(1157), 1, anon_sym_as, - ACTIONS(1141), 1, + ACTIONS(1159), 1, anon_sym_is, ACTIONS(516), 2, anon_sym_STAR, @@ -39739,10 +40111,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(534), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(509), 2, + STATE(514), 2, sym_shebangComment, sym_lineComment, - [17542] = 20, + [17907] = 20, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39757,30 +40129,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(31), 1, anon_sym_AT, - ACTIONS(1143), 1, + ACTIONS(1161), 1, sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1163), 1, anon_sym_class, - ACTIONS(1147), 1, + ACTIONS(1165), 1, anon_sym_typealias, - STATE(511), 1, - aux_sym_moduleHeader_repeat1, - STATE(550), 1, + STATE(599), 1, sym_moduleClause, - STATE(645), 1, - sym_methodHeader, - STATE(647), 1, + STATE(633), 1, + aux_sym_moduleHeader_repeat1, + STATE(637), 1, sym_extendsOrAmendsClause, - STATE(656), 1, + STATE(648), 1, + sym_methodHeader, + STATE(659), 1, sym_annotation, STATE(667), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, ACTIONS(19), 2, anon_sym_extends, anon_sym_amends, - STATE(510), 2, + STATE(515), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -39791,7 +40163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [17611] = 20, + [17976] = 20, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39806,30 +40178,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(31), 1, anon_sym_AT, - ACTIONS(1149), 1, + ACTIONS(1161), 1, sym_identifier, - ACTIONS(1151), 1, + ACTIONS(1163), 1, anon_sym_class, - ACTIONS(1153), 1, + ACTIONS(1165), 1, anon_sym_typealias, - STATE(533), 1, - sym_moduleClause, - STATE(626), 1, + STATE(517), 1, aux_sym_moduleHeader_repeat1, - STATE(646), 1, + STATE(599), 1, + sym_moduleClause, + STATE(637), 1, sym_extendsOrAmendsClause, STATE(648), 1, sym_methodHeader, - STATE(656), 1, + STATE(659), 1, sym_annotation, - STATE(662), 1, + STATE(667), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, ACTIONS(19), 2, anon_sym_extends, anon_sym_amends, - STATE(511), 2, + STATE(516), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -39840,7 +40212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [17680] = 20, + [18045] = 20, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39855,30 +40227,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(31), 1, anon_sym_AT, - ACTIONS(1143), 1, + ACTIONS(1167), 1, sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1169), 1, anon_sym_class, - ACTIONS(1147), 1, + ACTIONS(1171), 1, anon_sym_typealias, - STATE(550), 1, + STATE(562), 1, sym_moduleClause, - STATE(626), 1, + STATE(633), 1, aux_sym_moduleHeader_repeat1, - STATE(645), 1, - sym_methodHeader, - STATE(647), 1, + STATE(636), 1, sym_extendsOrAmendsClause, - STATE(656), 1, + STATE(639), 1, + sym_methodHeader, + STATE(659), 1, sym_annotation, - STATE(667), 1, + STATE(674), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, ACTIONS(19), 2, anon_sym_extends, anon_sym_amends, - STATE(512), 2, + STATE(517), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -39889,7 +40261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [17749] = 18, + [18114] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -39898,212 +40270,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1155), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1158), 1, + ACTIONS(1176), 1, anon_sym_RBRACE, - ACTIONS(1160), 1, + ACTIONS(1178), 1, anon_sym_function, - ACTIONS(1163), 1, + ACTIONS(1181), 1, anon_sym_AT, - ACTIONS(1169), 1, + ACTIONS(1187), 1, aux_sym_docComment_token1, - STATE(635), 1, - sym_methodHeader, STATE(652), 1, - sym_docComment, - STATE(656), 1, - sym_annotation, - STATE(657), 1, - aux_sym_moduleHeader_repeat1, - STATE(676), 1, - sym_modifier, - STATE(681), 1, - aux_sym_moduleClause_repeat1, - STATE(675), 2, - sym_classProperty, - sym_classMethod, - STATE(513), 3, - sym_shebangComment, - sym_lineComment, - aux_sym_classBody_repeat1, - ACTIONS(1166), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [17813] = 8, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1172), 1, - anon_sym_DASH_GT, - STATE(514), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(294), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_PIPE, - aux_sym_docComment_token1, - ACTIONS(292), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [17857] = 19, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(13), 1, - sym_identifier, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(35), 1, - aux_sym_docComment_token1, - ACTIONS(1174), 1, - anon_sym_RBRACE, - STATE(517), 1, - aux_sym_classBody_repeat1, - STATE(635), 1, sym_methodHeader, - STATE(652), 1, - sym_docComment, - STATE(656), 1, - sym_annotation, - STATE(657), 1, + STATE(658), 1, aux_sym_moduleHeader_repeat1, - STATE(676), 1, - sym_modifier, + STATE(659), 1, + sym_annotation, + STATE(660), 1, + sym_docComment, STATE(681), 1, + sym_modifier, + STATE(684), 1, aux_sym_moduleClause_repeat1, - STATE(515), 2, - sym_shebangComment, - sym_lineComment, - STATE(675), 2, + STATE(682), 2, sym_classProperty, sym_classMethod, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [17923] = 18, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(975), 1, - anon_sym_LBRACE, - ACTIONS(1176), 1, - sym_identifier, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1180), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_STAR, - ACTIONS(1186), 1, - anon_sym_DQUOTE, - ACTIONS(1188), 1, - anon_sym_POUND_DQUOTE, - STATE(395), 1, - sym_qualifiedIdentifier, - STATE(419), 1, - sym_objectBody, - STATE(442), 1, - sym_stringConstant, - STATE(813), 1, - sym_type, - ACTIONS(1182), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(516), 2, + STATE(518), 3, sym_shebangComment, sym_lineComment, - STATE(438), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_unionDefaultType, - sym_functionLiteralType, - [17987] = 19, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(13), 1, - sym_identifier, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(35), 1, - aux_sym_docComment_token1, - ACTIONS(1190), 1, - anon_sym_RBRACE, - STATE(513), 1, aux_sym_classBody_repeat1, - STATE(635), 1, - sym_methodHeader, - STATE(652), 1, - sym_docComment, - STATE(656), 1, - sym_annotation, - STATE(657), 1, - aux_sym_moduleHeader_repeat1, - STATE(676), 1, - sym_modifier, - STATE(681), 1, - aux_sym_moduleClause_repeat1, - STATE(517), 2, - sym_shebangComment, - sym_lineComment, - STATE(675), 2, - sym_classProperty, - sym_classMethod, - ACTIONS(33), 7, + ACTIONS(1184), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -40111,53 +40307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [18053] = 18, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(847), 1, - anon_sym_LBRACE, - ACTIONS(1176), 1, - sym_identifier, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1180), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_STAR, - ACTIONS(1186), 1, - anon_sym_DQUOTE, - ACTIONS(1188), 1, - anon_sym_POUND_DQUOTE, - STATE(302), 1, - sym_objectBody, - STATE(395), 1, - sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(803), 1, - sym_type, - ACTIONS(1182), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(518), 2, - sym_shebangComment, - sym_lineComment, - STATE(438), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_unionDefaultType, - sym_functionLiteralType, - [18117] = 18, + [18178] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40166,79 +40316,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(273), 1, + ACTIONS(865), 1, anon_sym_LBRACE, - ACTIONS(1176), 1, - sym_identifier, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1180), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_STAR, - ACTIONS(1186), 1, - anon_sym_DQUOTE, - ACTIONS(1188), 1, - anon_sym_POUND_DQUOTE, - STATE(57), 1, - sym_objectBody, - STATE(395), 1, - sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(807), 1, - sym_type, - ACTIONS(1182), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(519), 2, - sym_shebangComment, - sym_lineComment, - STATE(438), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_unionDefaultType, - sym_functionLiteralType, - [18181] = 17, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, - anon_sym_POUND_DQUOTE, - ACTIONS(1192), 1, - anon_sym_RPAREN, - STATE(395), 1, + ACTIONS(1202), 1, + anon_sym_POUND_DQUOTE, + STATE(328), 1, + sym_objectBody, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(795), 1, + STATE(808), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(520), 2, + STATE(519), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -40247,7 +40353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [18242] = 7, + [18242] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40256,10 +40362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(521), 2, + ACTIONS(1204), 1, + anon_sym_DASH_GT, + STATE(520), 2, sym_shebangComment, sym_lineComment, - ACTIONS(329), 9, + ACTIONS(285), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40269,7 +40377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE, aux_sym_docComment_token1, - ACTIONS(327), 11, + ACTIONS(283), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40281,7 +40389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [18283] = 13, + [18286] = 19, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40290,29 +40398,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1198), 1, - anon_sym_extends, - ACTIONS(1200), 1, - anon_sym_LBRACE, - ACTIONS(1202), 1, - anon_sym_LT, - STATE(599), 1, - sym_typeParameterList, - STATE(642), 1, - sym_classExtendsClause, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(35), 1, + aux_sym_docComment_token1, + ACTIONS(1206), 1, + anon_sym_RBRACE, + STATE(518), 1, + aux_sym_classBody_repeat1, + STATE(652), 1, + sym_methodHeader, + STATE(658), 1, + aux_sym_moduleHeader_repeat1, STATE(659), 1, - sym_classBody, - STATE(522), 2, + sym_annotation, + STATE(660), 1, + sym_docComment, + STATE(681), 1, + sym_modifier, + STATE(684), 1, + aux_sym_moduleClause_repeat1, + STATE(521), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1194), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1196), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, + STATE(682), 2, + sym_classProperty, + sym_classMethod, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -40320,8 +40436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [18336] = 13, + [18352] = 19, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40330,29 +40445,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1198), 1, - anon_sym_extends, - ACTIONS(1200), 1, - anon_sym_LBRACE, - ACTIONS(1202), 1, - anon_sym_LT, - STATE(605), 1, - sym_typeParameterList, - STATE(649), 1, - sym_classExtendsClause, - STATE(666), 1, - sym_classBody, - STATE(523), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1204), 3, - ts_builtin_sym_end, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, anon_sym_AT, + ACTIONS(35), 1, aux_sym_docComment_token1, - ACTIONS(1206), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, + ACTIONS(1208), 1, + anon_sym_RBRACE, + STATE(521), 1, + aux_sym_classBody_repeat1, + STATE(652), 1, + sym_methodHeader, + STATE(658), 1, + aux_sym_moduleHeader_repeat1, + STATE(659), 1, + sym_annotation, + STATE(660), 1, + sym_docComment, + STATE(681), 1, + sym_modifier, + STATE(684), 1, + aux_sym_moduleClause_repeat1, + STATE(522), 2, + sym_shebangComment, + sym_lineComment, + STATE(682), 2, + sym_classProperty, + sym_classMethod, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -40360,8 +40483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [18389] = 17, + [18418] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40370,33 +40492,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(273), 1, + anon_sym_LBRACE, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - ACTIONS(1208), 1, - anon_sym_RPAREN, - STATE(395), 1, + STATE(72), 1, + sym_objectBody, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(783), 1, + STATE(812), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(524), 2, + STATE(523), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -40405,7 +40529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [18450] = 17, + [18482] = 18, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40414,33 +40538,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(961), 1, + anon_sym_LBRACE, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - ACTIONS(1210), 1, - anon_sym_RPAREN, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(425), 1, + sym_objectBody, + STATE(447), 1, sym_stringConstant, - STATE(789), 1, + STATE(818), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(525), 2, + STATE(524), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -40449,7 +40575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [18511] = 17, + [18546] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40458,33 +40584,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1214), 1, + anon_sym_extends, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_LT, + STATE(601), 1, + sym_typeParameterList, + STATE(650), 1, + sym_classExtendsClause, + STATE(672), 1, + sym_classBody, + STATE(525), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1210), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1212), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, sym_identifier, - ACTIONS(1178), 1, + [18599] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(526), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(377), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_docComment_token1, + ACTIONS(375), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [18640] = 17, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1190), 1, + sym_identifier, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - ACTIONS(1212), 1, + ACTIONS(1220), 1, anon_sym_RPAREN, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(788), 1, + STATE(800), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(526), 2, + STATE(527), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -40493,7 +40693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [18572] = 17, + [18701] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40502,33 +40702,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - ACTIONS(1214), 1, + ACTIONS(1222), 1, anon_sym_RPAREN, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(797), 1, + STATE(788), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(527), 2, + STATE(528), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -40537,47 +40737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [18633] = 13, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1198), 1, - anon_sym_extends, - ACTIONS(1200), 1, - anon_sym_LBRACE, - ACTIONS(1202), 1, - anon_sym_LT, - STATE(612), 1, - sym_typeParameterList, - STATE(638), 1, - sym_classExtendsClause, - STATE(670), 1, - sym_classBody, - STATE(528), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1216), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1218), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [18686] = 17, + [18762] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40586,33 +40746,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - ACTIONS(1220), 1, + ACTIONS(1224), 1, anon_sym_RPAREN, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, STATE(793), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, STATE(529), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -40621,7 +40781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [18747] = 10, + [18823] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40630,23 +40790,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1226), 1, + ACTIONS(1230), 1, anon_sym_PIPE, STATE(530), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1222), 6, + ACTIONS(1226), 6, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1224), 11, + ACTIONS(1228), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40658,7 +40818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [18794] = 13, + [18870] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40667,26 +40827,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1198), 1, + ACTIONS(1214), 1, anon_sym_extends, - ACTIONS(1200), 1, + ACTIONS(1216), 1, anon_sym_LBRACE, - ACTIONS(1202), 1, + ACTIONS(1218), 1, anon_sym_LT, - STATE(606), 1, + STATE(618), 1, sym_typeParameterList, - STATE(634), 1, + STATE(638), 1, sym_classExtendsClause, - STATE(660), 1, + STATE(668), 1, sym_classBody, STATE(531), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1228), 3, + ACTIONS(1232), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1230), 11, + ACTIONS(1234), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40698,7 +40858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [18847] = 7, + [18923] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40710,7 +40870,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(532), 2, sym_shebangComment, sym_lineComment, - ACTIONS(373), 9, + ACTIONS(321), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40720,7 +40880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE, aux_sym_docComment_token1, - ACTIONS(371), 11, + ACTIONS(319), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40732,7 +40892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [18888] = 9, + [18964] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40741,21 +40901,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(636), 1, - sym_extendsOrAmendsClause, - ACTIONS(19), 2, + ACTIONS(1214), 1, anon_sym_extends, - anon_sym_amends, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_LT, + STATE(610), 1, + sym_typeParameterList, + STATE(651), 1, + sym_classExtendsClause, + STATE(666), 1, + sym_classBody, STATE(533), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1232), 4, + ACTIONS(1236), 3, ts_builtin_sym_end, - anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1234), 12, - anon_sym_import, + ACTIONS(1238), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40767,7 +40932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [18932] = 16, + [19017] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40776,31 +40941,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1236), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1238), 1, + ACTIONS(1192), 1, + anon_sym_module, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1240), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1242), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1244), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + ACTIONS(1240), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(420), 1, - sym_type, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - ACTIONS(1182), 2, + STATE(802), 1, + sym_type, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, STATE(534), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -40809,7 +40976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [18990] = 16, + [19078] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40818,31 +40985,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1246), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1250), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1254), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1258), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(261), 1, + ACTIONS(1242), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(264), 1, - sym_type, - STATE(275), 1, + STATE(447), 1, sym_stringConstant, - ACTIONS(1252), 2, + STATE(798), 1, + sym_type, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, STATE(535), 2, sym_shebangComment, sym_lineComment, - STATE(266), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -40851,7 +41020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [19048] = 16, + [19139] = 17, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40860,31 +41029,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1186), 1, - anon_sym_DQUOTE, - ACTIONS(1188), 1, - anon_sym_POUND_DQUOTE, - ACTIONS(1260), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1262), 1, + ACTIONS(1198), 1, anon_sym_STAR, - STATE(395), 1, + ACTIONS(1200), 1, + anon_sym_DQUOTE, + ACTIONS(1202), 1, + anon_sym_POUND_DQUOTE, + ACTIONS(1244), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(800), 1, + STATE(794), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, STATE(536), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -40893,7 +41064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [19106] = 7, + [19200] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40902,19 +41073,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, + ACTIONS(1214), 1, + anon_sym_extends, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_LT, + STATE(604), 1, + sym_typeParameterList, + STATE(646), 1, + sym_classExtendsClause, + STATE(671), 1, + sym_classBody, STATE(537), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1264), 4, + ACTIONS(1246), 3, ts_builtin_sym_end, - anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1266), 15, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_import, + ACTIONS(1248), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -40926,7 +41104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19146] = 16, + [19253] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -40935,73 +41113,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1250), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1252), 1, anon_sym_module, - ACTIONS(1186), 1, - anon_sym_DQUOTE, - ACTIONS(1188), 1, - anon_sym_POUND_DQUOTE, - ACTIONS(1260), 1, + ACTIONS(1254), 1, anon_sym_LPAREN, - ACTIONS(1262), 1, + ACTIONS(1258), 1, anon_sym_STAR, - STATE(395), 1, - sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(451), 1, - sym_type, - ACTIONS(1182), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(538), 2, - sym_shebangComment, - sym_lineComment, - STATE(438), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_unionDefaultType, - sym_functionLiteralType, - [19204] = 16, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1176), 1, - sym_identifier, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1186), 1, - anon_sym_DQUOTE, - ACTIONS(1188), 1, - anon_sym_POUND_DQUOTE, ACTIONS(1260), 1, - anon_sym_LPAREN, + anon_sym_DQUOTE, ACTIONS(1262), 1, - anon_sym_STAR, - STATE(395), 1, + anon_sym_POUND_DQUOTE, + STATE(359), 1, sym_qualifiedIdentifier, - STATE(420), 1, + STATE(367), 1, sym_type, - STATE(442), 1, + STATE(375), 1, sym_stringConstant, - ACTIONS(1182), 2, + ACTIONS(1256), 2, anon_sym_unknown, anon_sym_nothing, - STATE(539), 2, + STATE(538), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(376), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41010,7 +41146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [19262] = 16, + [19311] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41019,82 +41155,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1268), 1, - sym_identifier, - ACTIONS(1270), 1, - anon_sym_module, - ACTIONS(1272), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1278), 1, - anon_sym_DQUOTE, - ACTIONS(1280), 1, - anon_sym_POUND_DQUOTE, - STATE(29), 1, - sym_qualifiedIdentifier, - STATE(39), 1, - sym_stringConstant, - STATE(46), 1, - sym_type, - ACTIONS(1274), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(540), 2, + STATE(539), 2, sym_shebangComment, sym_lineComment, - STATE(38), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_unionDefaultType, - sym_functionLiteralType, - [19320] = 16, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1178), 1, + ACTIONS(469), 5, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(467), 14, anon_sym_module, - ACTIONS(1236), 1, + anon_sym_extends, + anon_sym_amends, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, sym_identifier, - ACTIONS(1238), 1, - anon_sym_LPAREN, - ACTIONS(1240), 1, - anon_sym_STAR, - ACTIONS(1242), 1, - anon_sym_DQUOTE, - ACTIONS(1244), 1, - anon_sym_POUND_DQUOTE, - STATE(395), 1, - sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(627), 1, - sym_type, - ACTIONS(1182), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(541), 2, - sym_shebangComment, - sym_lineComment, - STATE(438), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_unionDefaultType, - sym_functionLiteralType, - [19378] = 9, + [19351] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41103,20 +41188,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(647), 1, + STATE(637), 1, sym_extendsOrAmendsClause, ACTIONS(19), 2, anon_sym_extends, anon_sym_amends, - STATE(542), 2, + STATE(540), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1282), 4, + ACTIONS(1264), 4, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1284), 12, + ACTIONS(1266), 12, anon_sym_import, anon_sym_class, anon_sym_typealias, @@ -41129,7 +41214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19422] = 16, + [19395] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41138,31 +41223,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1268), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1270), 1, anon_sym_module, - ACTIONS(1186), 1, - anon_sym_DQUOTE, - ACTIONS(1188), 1, - anon_sym_POUND_DQUOTE, - ACTIONS(1260), 1, + ACTIONS(1272), 1, anon_sym_LPAREN, - ACTIONS(1262), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(395), 1, + ACTIONS(1278), 1, + anon_sym_DQUOTE, + ACTIONS(1280), 1, + anon_sym_POUND_DQUOTE, + STATE(28), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(38), 1, sym_stringConstant, - STATE(453), 1, + STATE(350), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1274), 2, anon_sym_unknown, anon_sym_nothing, - STATE(543), 2, + STATE(541), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(43), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41171,7 +41256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [19480] = 16, + [19453] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41180,31 +41265,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1282), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1284), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1286), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1290), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1292), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1294), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(265), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(282), 1, sym_stringConstant, - STATE(685), 1, + STATE(287), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1288), 2, anon_sym_unknown, anon_sym_nothing, - STATE(544), 2, + STATE(542), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(278), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41213,7 +41298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [19538] = 16, + [19511] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41222,31 +41307,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1236), 1, + ACTIONS(1250), 1, sym_identifier, - ACTIONS(1238), 1, + ACTIONS(1252), 1, + anon_sym_module, + ACTIONS(1254), 1, anon_sym_LPAREN, - ACTIONS(1240), 1, + ACTIONS(1258), 1, anon_sym_STAR, - ACTIONS(1242), 1, + ACTIONS(1260), 1, anon_sym_DQUOTE, - ACTIONS(1244), 1, + ACTIONS(1262), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(359), 1, sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(446), 1, + STATE(371), 1, sym_type, - ACTIONS(1182), 2, + STATE(375), 1, + sym_stringConstant, + ACTIONS(1256), 2, anon_sym_unknown, anon_sym_nothing, - STATE(545), 2, + STATE(543), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(376), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41255,7 +41340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [19596] = 16, + [19569] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41276,19 +41361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1280), 1, anon_sym_POUND_DQUOTE, - STATE(29), 1, + STATE(28), 1, sym_qualifiedIdentifier, - STATE(39), 1, + STATE(38), 1, sym_stringConstant, - STATE(40), 1, + STATE(345), 1, sym_type, ACTIONS(1274), 2, anon_sym_unknown, anon_sym_nothing, - STATE(546), 2, + STATE(544), 2, sym_shebangComment, sym_lineComment, - STATE(38), 8, + STATE(43), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41297,7 +41382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [19654] = 16, + [19627] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41306,31 +41391,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1236), 1, + ACTIONS(1250), 1, sym_identifier, - ACTIONS(1238), 1, + ACTIONS(1252), 1, + anon_sym_module, + ACTIONS(1254), 1, anon_sym_LPAREN, - ACTIONS(1240), 1, + ACTIONS(1258), 1, anon_sym_STAR, - ACTIONS(1242), 1, + ACTIONS(1260), 1, anon_sym_DQUOTE, - ACTIONS(1244), 1, + ACTIONS(1262), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(359), 1, sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(530), 1, + STATE(370), 1, sym_type, - ACTIONS(1182), 2, + STATE(375), 1, + sym_stringConstant, + ACTIONS(1256), 2, anon_sym_unknown, anon_sym_nothing, - STATE(547), 2, + STATE(545), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(376), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41339,7 +41424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [19712] = 11, + [19685] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41348,68 +41433,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, - anon_sym_LBRACE, - ACTIONS(1292), 1, - anon_sym_EQ, - STATE(608), 1, - aux_sym_classProperty_repeat1, - STATE(644), 1, - sym_objectBody, - STATE(548), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1286), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1288), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, + ACTIONS(1190), 1, sym_identifier, - [19760] = 16, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1236), 1, - sym_identifier, - ACTIONS(1238), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1240), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1242), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1244), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(615), 1, + STATE(433), 1, sym_type, - ACTIONS(1182), 2, + STATE(447), 1, + sym_stringConstant, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(549), 2, + STATE(546), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41418,7 +41466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [19818] = 9, + [19743] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41427,21 +41475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(646), 1, - sym_extendsOrAmendsClause, - ACTIONS(19), 2, - anon_sym_extends, - anon_sym_amends, - STATE(550), 2, + STATE(547), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1294), 4, + ACTIONS(401), 5, ts_builtin_sym_end, - anon_sym_import_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1296), 12, - anon_sym_import, + ACTIONS(399), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41453,7 +41499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [19862] = 10, + [19783] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41462,34 +41508,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, + ACTIONS(1192), 1, + anon_sym_module, + ACTIONS(1296), 1, + sym_identifier, + ACTIONS(1298), 1, + anon_sym_LPAREN, + ACTIONS(1300), 1, + anon_sym_STAR, ACTIONS(1302), 1, - anon_sym_import, - ACTIONS(1305), 1, - anon_sym_import_STAR, - STATE(637), 2, - sym_importClause, - sym_importGlobClause, - ACTIONS(1298), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - STATE(551), 3, + anon_sym_DQUOTE, + ACTIONS(1304), 1, + anon_sym_POUND_DQUOTE, + STATE(399), 1, + sym_qualifiedIdentifier, + STATE(447), 1, + sym_stringConstant, + STATE(624), 1, + sym_type, + ACTIONS(1196), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(548), 2, sym_shebangComment, sym_lineComment, - aux_sym_module_repeat1, - ACTIONS(1300), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [19908] = 16, + STATE(448), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_unionDefaultType, + sym_functionLiteralType, + [19841] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41498,31 +41550,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, - sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1296), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1300), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1302), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1304), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(798), 1, + STATE(626), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(552), 2, + STATE(549), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41531,7 +41583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [19966] = 16, + [19899] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41552,19 +41604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1280), 1, anon_sym_POUND_DQUOTE, - STATE(29), 1, + STATE(28), 1, sym_qualifiedIdentifier, - STATE(39), 1, + STATE(38), 1, sym_stringConstant, - STATE(43), 1, + STATE(77), 1, sym_type, ACTIONS(1274), 2, anon_sym_unknown, anon_sym_nothing, - STATE(553), 2, + STATE(550), 2, sym_shebangComment, sym_lineComment, - STATE(38), 8, + STATE(43), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41573,7 +41625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20024] = 16, + [19957] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41582,31 +41634,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1236), 1, + ACTIONS(1268), 1, sym_identifier, - ACTIONS(1238), 1, + ACTIONS(1270), 1, + anon_sym_module, + ACTIONS(1272), 1, anon_sym_LPAREN, - ACTIONS(1240), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1242), 1, + ACTIONS(1278), 1, anon_sym_DQUOTE, - ACTIONS(1244), 1, + ACTIONS(1280), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(28), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(38), 1, sym_stringConstant, - STATE(464), 1, + STATE(78), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1274), 2, anon_sym_unknown, anon_sym_nothing, - STATE(554), 2, + STATE(551), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(43), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41615,7 +41667,44 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20082] = 16, + [20015] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1306), 1, + anon_sym_LBRACE, + ACTIONS(1308), 1, + anon_sym_EQ, + STATE(605), 1, + aux_sym_classProperty_repeat1, + STATE(654), 1, + sym_objectBody, + STATE(552), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(905), 4, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(907), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [20063] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41624,31 +41713,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1246), 1, + ACTIONS(1282), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1284), 1, anon_sym_module, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_LPAREN, - ACTIONS(1254), 1, + ACTIONS(1290), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1292), 1, anon_sym_DQUOTE, - ACTIONS(1258), 1, + ACTIONS(1294), 1, anon_sym_POUND_DQUOTE, - STATE(261), 1, + STATE(265), 1, sym_qualifiedIdentifier, - STATE(274), 1, - sym_type, - STATE(275), 1, + STATE(282), 1, sym_stringConstant, - ACTIONS(1252), 2, + STATE(283), 1, + sym_type, + ACTIONS(1288), 2, anon_sym_unknown, anon_sym_nothing, - STATE(555), 2, + STATE(553), 2, sym_shebangComment, sym_lineComment, - STATE(266), 8, + STATE(278), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41657,7 +41746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20140] = 16, + [20121] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41666,31 +41755,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1236), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1238), 1, + ACTIONS(1192), 1, + anon_sym_module, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1240), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1242), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1244), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(624), 1, + STATE(796), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(556), 2, + STATE(554), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41699,7 +41788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20198] = 16, + [20179] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41708,31 +41797,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_STAR, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(794), 1, + STATE(805), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(557), 2, + STATE(555), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41741,7 +41830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20256] = 7, + [20237] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41750,19 +41839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(558), 2, + STATE(556), 2, sym_shebangComment, sym_lineComment, - ACTIONS(467), 5, + ACTIONS(1314), 4, ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(465), 14, + ACTIONS(1316), 15, anon_sym_module, anon_sym_extends, anon_sym_amends, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -41774,7 +41863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [20296] = 16, + [20277] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41783,31 +41872,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, - sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1296), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1300), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1302), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1304), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(787), 1, + STATE(429), 1, sym_type, - ACTIONS(1182), 2, + STATE(447), 1, + sym_stringConstant, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(559), 2, + STATE(557), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41816,44 +41905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20354] = 11, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1290), 1, - anon_sym_LBRACE, - ACTIONS(1308), 1, - anon_sym_EQ, - STATE(614), 1, - aux_sym_classProperty_repeat1, - STATE(644), 1, - sym_objectBody, - STATE(560), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(903), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(905), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [20402] = 16, + [20335] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41862,31 +41914,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1186), 1, - anon_sym_DQUOTE, - ACTIONS(1188), 1, - anon_sym_POUND_DQUOTE, - ACTIONS(1260), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1262), 1, + ACTIONS(1198), 1, anon_sym_STAR, - STATE(395), 1, + ACTIONS(1200), 1, + anon_sym_DQUOTE, + ACTIONS(1202), 1, + anon_sym_POUND_DQUOTE, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(446), 1, + STATE(804), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(561), 2, + STATE(558), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41895,7 +41947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20460] = 16, + [20393] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41904,31 +41956,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_STAR, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(420), 1, + STATE(429), 1, sym_type, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(562), 2, + STATE(559), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41937,7 +41989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20518] = 16, + [20451] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41946,31 +41998,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1236), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1238), 1, - anon_sym_LPAREN, - ACTIONS(1240), 1, - anon_sym_STAR, - ACTIONS(1242), 1, + ACTIONS(1192), 1, + anon_sym_module, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1244), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_STAR, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(453), 1, + STATE(433), 1, sym_type, - ACTIONS(1182), 2, + STATE(447), 1, + sym_stringConstant, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(563), 2, + STATE(560), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -41979,7 +42031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20576] = 16, + [20509] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -41988,31 +42040,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1178), 1, - anon_sym_module, - ACTIONS(1236), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1238), 1, + ACTIONS(1192), 1, + anon_sym_module, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1240), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1242), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1244), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(625), 1, + STATE(429), 1, sym_type, - ACTIONS(1182), 2, + STATE(447), 1, + sym_stringConstant, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(564), 2, + STATE(561), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42021,7 +42073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20634] = 16, + [20567] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42030,40 +42082,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1268), 1, + STATE(655), 1, + sym_extendsOrAmendsClause, + ACTIONS(19), 2, + anon_sym_extends, + anon_sym_amends, + STATE(562), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1318), 4, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1320), 12, + anon_sym_import, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, sym_identifier, - ACTIONS(1270), 1, - anon_sym_module, - ACTIONS(1272), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1278), 1, - anon_sym_DQUOTE, - ACTIONS(1280), 1, - anon_sym_POUND_DQUOTE, - STATE(29), 1, - sym_qualifiedIdentifier, - STATE(39), 1, - sym_stringConstant, - STATE(45), 1, - sym_type, - ACTIONS(1274), 2, - anon_sym_unknown, - anon_sym_nothing, - STATE(565), 2, + [20611] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1306), 1, + anon_sym_LBRACE, + ACTIONS(1322), 1, + anon_sym_EQ, + STATE(607), 1, + aux_sym_classProperty_repeat1, + STATE(654), 1, + sym_objectBody, + STATE(563), 2, sym_shebangComment, sym_lineComment, - STATE(38), 8, - sym_stringLiteralType, - sym_declaredType, - sym_parenthesizedType, - sym_nullableType, - sym_constrainedType, - sym_unionType, - sym_unionDefaultType, - sym_functionLiteralType, - [20692] = 16, + ACTIONS(929), 4, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(931), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [20659] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42072,31 +42154,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(791), 1, + STATE(690), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(566), 2, + STATE(564), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42105,7 +42187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20750] = 16, + [20717] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42114,31 +42196,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1236), 1, + ACTIONS(1296), 1, sym_identifier, - ACTIONS(1238), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1240), 1, + ACTIONS(1300), 1, anon_sym_STAR, - ACTIONS(1242), 1, + ACTIONS(1302), 1, anon_sym_DQUOTE, - ACTIONS(1244), 1, + ACTIONS(1304), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(451), 1, + STATE(453), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(567), 2, + STATE(565), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42147,7 +42229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20808] = 7, + [20775] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42156,64 +42238,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(568), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(405), 5, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(403), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, + ACTIONS(1268), 1, sym_identifier, - [20848] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(569), 2, + ACTIONS(1270), 1, + anon_sym_module, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1278), 1, + anon_sym_DQUOTE, + ACTIONS(1280), 1, + anon_sym_POUND_DQUOTE, + STATE(28), 1, + sym_qualifiedIdentifier, + STATE(36), 1, + sym_type, + STATE(38), 1, + sym_stringConstant, + ACTIONS(1274), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(566), 2, sym_shebangComment, sym_lineComment, - ACTIONS(479), 5, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(477), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - sym_identifier, - [20888] = 16, + STATE(43), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_unionDefaultType, + sym_functionLiteralType, + [20833] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42222,31 +42280,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1246), 1, + ACTIONS(1282), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1284), 1, anon_sym_module, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_LPAREN, - ACTIONS(1254), 1, + ACTIONS(1290), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1292), 1, anon_sym_DQUOTE, - ACTIONS(1258), 1, + ACTIONS(1294), 1, anon_sym_POUND_DQUOTE, - STATE(261), 1, + STATE(265), 1, sym_qualifiedIdentifier, - STATE(275), 1, - sym_stringConstant, - STATE(283), 1, + STATE(270), 1, sym_type, - ACTIONS(1252), 2, + STATE(282), 1, + sym_stringConstant, + ACTIONS(1288), 2, anon_sym_unknown, anon_sym_nothing, - STATE(570), 2, + STATE(567), 2, sym_shebangComment, sym_lineComment, - STATE(266), 8, + STATE(278), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42255,7 +42313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [20946] = 16, + [20891] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42264,31 +42322,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1246), 1, + ACTIONS(1268), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1270), 1, anon_sym_module, - ACTIONS(1250), 1, + ACTIONS(1272), 1, anon_sym_LPAREN, - ACTIONS(1254), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1278), 1, anon_sym_DQUOTE, - ACTIONS(1258), 1, + ACTIONS(1280), 1, anon_sym_POUND_DQUOTE, - STATE(261), 1, + STATE(28), 1, sym_qualifiedIdentifier, - STATE(275), 1, + STATE(38), 1, sym_stringConstant, - STATE(280), 1, + STATE(48), 1, sym_type, - ACTIONS(1252), 2, + ACTIONS(1274), 2, anon_sym_unknown, anon_sym_nothing, - STATE(571), 2, + STATE(568), 2, sym_shebangComment, sym_lineComment, - STATE(266), 8, + STATE(43), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42297,7 +42355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21004] = 16, + [20949] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42306,31 +42364,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1246), 1, - sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1250), 1, + ACTIONS(1296), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1254), 1, + ACTIONS(1300), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1302), 1, anon_sym_DQUOTE, - ACTIONS(1258), 1, + ACTIONS(1304), 1, anon_sym_POUND_DQUOTE, - STATE(261), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(270), 1, + STATE(433), 1, sym_type, - STATE(275), 1, + STATE(447), 1, sym_stringConstant, - ACTIONS(1252), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(572), 2, + STATE(569), 2, sym_shebangComment, sym_lineComment, - STATE(266), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42339,7 +42397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21062] = 16, + [21007] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42348,31 +42406,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1310), 1, + ACTIONS(1250), 1, sym_identifier, - ACTIONS(1312), 1, + ACTIONS(1252), 1, anon_sym_module, - ACTIONS(1314), 1, + ACTIONS(1254), 1, anon_sym_LPAREN, - ACTIONS(1318), 1, + ACTIONS(1258), 1, anon_sym_STAR, - ACTIONS(1320), 1, + ACTIONS(1260), 1, anon_sym_DQUOTE, - ACTIONS(1322), 1, + ACTIONS(1262), 1, anon_sym_POUND_DQUOTE, - STATE(353), 1, + STATE(359), 1, sym_qualifiedIdentifier, - STATE(381), 1, + STATE(362), 1, sym_type, - STATE(388), 1, + STATE(375), 1, sym_stringConstant, - ACTIONS(1316), 2, + ACTIONS(1256), 2, anon_sym_unknown, anon_sym_nothing, - STATE(573), 2, + STATE(570), 2, sym_shebangComment, sym_lineComment, - STATE(379), 8, + STATE(376), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42381,7 +42439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21120] = 11, + [21065] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42390,23 +42448,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, ACTIONS(1324), 1, anon_sym_EQ, - STATE(604), 1, + STATE(619), 1, aux_sym_classProperty_repeat1, - STATE(644), 1, + STATE(654), 1, sym_objectBody, - STATE(574), 2, + STATE(571), 2, sym_shebangComment, sym_lineComment, - ACTIONS(907), 4, + ACTIONS(913), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(909), 11, + ACTIONS(915), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -42418,7 +42476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21168] = 16, + [21113] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42427,31 +42485,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1236), 1, + ACTIONS(1296), 1, sym_identifier, - ACTIONS(1238), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1240), 1, + ACTIONS(1300), 1, anon_sym_STAR, - ACTIONS(1242), 1, + ACTIONS(1302), 1, anon_sym_DQUOTE, - ACTIONS(1244), 1, + ACTIONS(1304), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(617), 1, + STATE(629), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(575), 2, + STATE(572), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42460,7 +42518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21226] = 16, + [21171] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42481,19 +42539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1280), 1, anon_sym_POUND_DQUOTE, - STATE(29), 1, + STATE(28), 1, sym_qualifiedIdentifier, - STATE(39), 1, - sym_stringConstant, - STATE(78), 1, + STATE(37), 1, sym_type, + STATE(38), 1, + sym_stringConstant, ACTIONS(1274), 2, anon_sym_unknown, anon_sym_nothing, - STATE(576), 2, + STATE(573), 2, sym_shebangComment, sym_lineComment, - STATE(38), 8, + STATE(43), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42502,7 +42560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21284] = 16, + [21229] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42511,31 +42569,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1268), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1272), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1278), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1280), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(29), 1, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_STAR, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(39), 1, + STATE(447), 1, sym_stringConstant, - STATE(77), 1, + STATE(453), 1, sym_type, - ACTIONS(1274), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(577), 2, + STATE(574), 2, sym_shebangComment, sym_lineComment, - STATE(38), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42544,7 +42602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21342] = 16, + [21287] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42553,31 +42611,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1310), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1312), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1314), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1318), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1320), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1322), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(353), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(367), 1, - sym_type, - STATE(388), 1, + STATE(447), 1, sym_stringConstant, - ACTIONS(1316), 2, + STATE(792), 1, + sym_type, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(578), 2, + STATE(575), 2, sym_shebangComment, sym_lineComment, - STATE(379), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42586,7 +42644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21400] = 16, + [21345] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42595,31 +42653,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1310), 1, - sym_identifier, - ACTIONS(1312), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1314), 1, + ACTIONS(1296), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1318), 1, + ACTIONS(1300), 1, anon_sym_STAR, - ACTIONS(1320), 1, + ACTIONS(1302), 1, anon_sym_DQUOTE, - ACTIONS(1322), 1, + ACTIONS(1304), 1, anon_sym_POUND_DQUOTE, - STATE(353), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(364), 1, + STATE(445), 1, sym_type, - STATE(388), 1, + STATE(447), 1, sym_stringConstant, - ACTIONS(1316), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(579), 2, + STATE(576), 2, sym_shebangComment, sym_lineComment, - STATE(379), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42628,7 +42686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21458] = 16, + [21403] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42637,31 +42695,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1246), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1250), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1254), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1258), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(261), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(273), 1, - sym_type, - STATE(275), 1, + STATE(447), 1, sym_stringConstant, - ACTIONS(1252), 2, + STATE(453), 1, + sym_type, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(580), 2, + STATE(577), 2, sym_shebangComment, sym_lineComment, - STATE(266), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42670,7 +42728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21516] = 16, + [21461] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42679,31 +42737,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1246), 1, + ACTIONS(1250), 1, sym_identifier, - ACTIONS(1248), 1, + ACTIONS(1252), 1, anon_sym_module, - ACTIONS(1250), 1, - anon_sym_LPAREN, ACTIONS(1254), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1260), 1, anon_sym_DQUOTE, - ACTIONS(1258), 1, + ACTIONS(1262), 1, anon_sym_POUND_DQUOTE, - STATE(261), 1, + STATE(359), 1, sym_qualifiedIdentifier, - STATE(275), 1, + STATE(375), 1, sym_stringConstant, - STATE(281), 1, + STATE(377), 1, sym_type, - ACTIONS(1252), 2, + ACTIONS(1256), 2, anon_sym_unknown, anon_sym_nothing, - STATE(581), 2, + STATE(578), 2, sym_shebangComment, sym_lineComment, - STATE(266), 8, + STATE(376), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42712,7 +42770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21574] = 16, + [21519] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42721,31 +42779,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1282), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1284), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1286), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1290), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1292), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1294), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(265), 1, sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(464), 1, + STATE(269), 1, sym_type, - ACTIONS(1182), 2, + STATE(282), 1, + sym_stringConstant, + ACTIONS(1288), 2, anon_sym_unknown, anon_sym_nothing, - STATE(582), 2, + STATE(579), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(278), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42754,7 +42812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21632] = 16, + [21577] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42763,31 +42821,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1250), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1252), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1254), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1258), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1260), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1262), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(359), 1, sym_qualifiedIdentifier, - STATE(442), 1, - sym_stringConstant, - STATE(453), 1, + STATE(366), 1, sym_type, - ACTIONS(1182), 2, + STATE(375), 1, + sym_stringConstant, + ACTIONS(1256), 2, anon_sym_unknown, anon_sym_nothing, - STATE(583), 2, + STATE(580), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(376), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42796,7 +42854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21690] = 16, + [21635] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42805,31 +42863,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(451), 1, + STATE(799), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(584), 2, + STATE(581), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42838,7 +42896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21748] = 16, + [21693] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42847,31 +42905,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1310), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1312), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1314), 1, - anon_sym_LPAREN, - ACTIONS(1318), 1, - anon_sym_STAR, - ACTIONS(1320), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1322), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(353), 1, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_STAR, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(363), 1, + STATE(445), 1, sym_type, - STATE(388), 1, + STATE(447), 1, sym_stringConstant, - ACTIONS(1316), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, - STATE(585), 2, + STATE(582), 2, sym_shebangComment, sym_lineComment, - STATE(379), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42880,7 +42938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21806] = 16, + [21751] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42889,31 +42947,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1310), 1, + STATE(583), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(417), 5, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(415), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, sym_identifier, - ACTIONS(1312), 1, + [21791] = 16, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1282), 1, + sym_identifier, + ACTIONS(1284), 1, anon_sym_module, - ACTIONS(1314), 1, + ACTIONS(1286), 1, anon_sym_LPAREN, - ACTIONS(1318), 1, + ACTIONS(1290), 1, anon_sym_STAR, - ACTIONS(1320), 1, + ACTIONS(1292), 1, anon_sym_DQUOTE, - ACTIONS(1322), 1, + ACTIONS(1294), 1, anon_sym_POUND_DQUOTE, - STATE(353), 1, + STATE(265), 1, sym_qualifiedIdentifier, - STATE(359), 1, - sym_type, - STATE(388), 1, + STATE(282), 1, sym_stringConstant, - ACTIONS(1316), 2, + STATE(288), 1, + sym_type, + ACTIONS(1288), 2, anon_sym_unknown, anon_sym_nothing, - STATE(586), 2, + STATE(584), 2, sym_shebangComment, sym_lineComment, - STATE(379), 8, + STATE(278), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42922,7 +43013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21864] = 16, + [21849] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42943,19 +43034,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1280), 1, anon_sym_POUND_DQUOTE, - STATE(29), 1, + STATE(28), 1, sym_qualifiedIdentifier, - STATE(39), 1, + STATE(38), 1, sym_stringConstant, - STATE(338), 1, + STATE(39), 1, sym_type, ACTIONS(1274), 2, anon_sym_unknown, anon_sym_nothing, + STATE(585), 2, + sym_shebangComment, + sym_lineComment, + STATE(43), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_unionDefaultType, + sym_functionLiteralType, + [21907] = 16, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1192), 1, + anon_sym_module, + ACTIONS(1296), 1, + sym_identifier, + ACTIONS(1298), 1, + anon_sym_LPAREN, + ACTIONS(1300), 1, + anon_sym_STAR, + ACTIONS(1302), 1, + anon_sym_DQUOTE, + ACTIONS(1304), 1, + anon_sym_POUND_DQUOTE, + STATE(399), 1, + sym_qualifiedIdentifier, + STATE(447), 1, + sym_stringConstant, + STATE(620), 1, + sym_type, + ACTIONS(1196), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(586), 2, + sym_shebangComment, + sym_lineComment, + STATE(448), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_unionDefaultType, + sym_functionLiteralType, + [21965] = 16, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1192), 1, + anon_sym_module, + ACTIONS(1296), 1, + sym_identifier, + ACTIONS(1298), 1, + anon_sym_LPAREN, + ACTIONS(1300), 1, + anon_sym_STAR, + ACTIONS(1302), 1, + anon_sym_DQUOTE, + ACTIONS(1304), 1, + anon_sym_POUND_DQUOTE, + STATE(399), 1, + sym_qualifiedIdentifier, + STATE(447), 1, + sym_stringConstant, + STATE(530), 1, + sym_type, + ACTIONS(1196), 2, + anon_sym_unknown, + anon_sym_nothing, STATE(587), 2, sym_shebangComment, sym_lineComment, - STATE(38), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -42964,7 +43139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [21922] = 11, + [22023] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -42973,23 +43148,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, - ACTIONS(1326), 1, + ACTIONS(1330), 1, anon_sym_EQ, - STATE(603), 1, + STATE(608), 1, aux_sym_classProperty_repeat1, - STATE(644), 1, + STATE(654), 1, sym_objectBody, STATE(588), 2, sym_shebangComment, sym_lineComment, - ACTIONS(895), 4, + ACTIONS(1326), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(897), 11, + ACTIONS(1328), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43001,7 +43176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [21970] = 16, + [22071] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43010,31 +43185,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1310), 1, + ACTIONS(1282), 1, sym_identifier, - ACTIONS(1312), 1, + ACTIONS(1284), 1, anon_sym_module, - ACTIONS(1314), 1, + ACTIONS(1286), 1, anon_sym_LPAREN, - ACTIONS(1318), 1, + ACTIONS(1290), 1, anon_sym_STAR, - ACTIONS(1320), 1, + ACTIONS(1292), 1, anon_sym_DQUOTE, - ACTIONS(1322), 1, + ACTIONS(1294), 1, anon_sym_POUND_DQUOTE, - STATE(353), 1, + STATE(265), 1, sym_qualifiedIdentifier, - STATE(373), 1, + STATE(280), 1, sym_type, - STATE(388), 1, + STATE(282), 1, sym_stringConstant, - ACTIONS(1316), 2, + ACTIONS(1288), 2, anon_sym_unknown, anon_sym_nothing, STATE(589), 2, sym_shebangComment, sym_lineComment, - STATE(379), 8, + STATE(278), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -43043,7 +43218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [22028] = 16, + [22129] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43052,31 +43227,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1268), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1272), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1278), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1280), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(29), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(39), 1, + STATE(447), 1, sym_stringConstant, - STATE(345), 1, + STATE(803), 1, sym_type, - ACTIONS(1274), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, STATE(590), 2, sym_shebangComment, sym_lineComment, - STATE(38), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -43085,7 +43260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [22086] = 16, + [22187] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43094,31 +43269,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1310), 1, + ACTIONS(1190), 1, sym_identifier, - ACTIONS(1312), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1314), 1, + ACTIONS(1194), 1, anon_sym_LPAREN, - ACTIONS(1318), 1, + ACTIONS(1198), 1, anon_sym_STAR, - ACTIONS(1320), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1322), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(353), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(368), 1, - sym_type, - STATE(388), 1, + STATE(447), 1, sym_stringConstant, - ACTIONS(1316), 2, + STATE(456), 1, + sym_type, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, STATE(591), 2, sym_shebangComment, sym_lineComment, - STATE(379), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -43127,7 +43302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [22144] = 16, + [22245] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43136,31 +43311,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, - sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1192), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1296), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1300), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1302), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1304), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(399), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(447), 1, sym_stringConstant, - STATE(446), 1, + STATE(627), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1196), 2, anon_sym_unknown, anon_sym_nothing, STATE(592), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(448), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -43169,7 +43344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [22202] = 16, + [22303] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43190,11 +43365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1280), 1, anon_sym_POUND_DQUOTE, - STATE(29), 1, + STATE(28), 1, sym_qualifiedIdentifier, - STATE(39), 1, + STATE(38), 1, sym_stringConstant, - STATE(42), 1, + STATE(47), 1, sym_type, ACTIONS(1274), 2, anon_sym_unknown, @@ -43202,7 +43377,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(593), 2, sym_shebangComment, sym_lineComment, - STATE(38), 8, + STATE(43), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -43211,7 +43386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [22260] = 16, + [22361] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43220,31 +43395,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1176), 1, + ACTIONS(1282), 1, sym_identifier, - ACTIONS(1178), 1, + ACTIONS(1284), 1, anon_sym_module, - ACTIONS(1180), 1, + ACTIONS(1286), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1290), 1, anon_sym_STAR, - ACTIONS(1186), 1, + ACTIONS(1292), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1294), 1, anon_sym_POUND_DQUOTE, - STATE(395), 1, + STATE(265), 1, sym_qualifiedIdentifier, - STATE(442), 1, + STATE(282), 1, sym_stringConstant, - STATE(799), 1, + STATE(286), 1, sym_type, - ACTIONS(1182), 2, + ACTIONS(1288), 2, anon_sym_unknown, anon_sym_nothing, STATE(594), 2, sym_shebangComment, sym_lineComment, - STATE(438), 8, + STATE(278), 8, sym_stringLiteralType, sym_declaredType, sym_parenthesizedType, @@ -43253,7 +43428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unionType, sym_unionDefaultType, sym_functionLiteralType, - [22318] = 9, + [22419] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43262,20 +43437,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1332), 1, - anon_sym_COLON, - STATE(632), 1, - sym_typeAnnotation, + ACTIONS(1190), 1, + sym_identifier, + ACTIONS(1192), 1, + anon_sym_module, + ACTIONS(1194), 1, + anon_sym_LPAREN, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1200), 1, + anon_sym_DQUOTE, + ACTIONS(1202), 1, + anon_sym_POUND_DQUOTE, + STATE(399), 1, + sym_qualifiedIdentifier, + STATE(445), 1, + sym_type, + STATE(447), 1, + sym_stringConstant, + ACTIONS(1196), 2, + anon_sym_unknown, + anon_sym_nothing, STATE(595), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1328), 5, + STATE(448), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_unionDefaultType, + sym_functionLiteralType, + [22477] = 16, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1192), 1, + anon_sym_module, + ACTIONS(1296), 1, + sym_identifier, + ACTIONS(1298), 1, + anon_sym_LPAREN, + ACTIONS(1300), 1, + anon_sym_STAR, + ACTIONS(1302), 1, + anon_sym_DQUOTE, + ACTIONS(1304), 1, + anon_sym_POUND_DQUOTE, + STATE(399), 1, + sym_qualifiedIdentifier, + STATE(447), 1, + sym_stringConstant, + STATE(456), 1, + sym_type, + ACTIONS(1196), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(596), 2, + sym_shebangComment, + sym_lineComment, + STATE(448), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_unionDefaultType, + sym_functionLiteralType, + [22535] = 10, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1336), 1, + anon_sym_import, + ACTIONS(1339), 1, + anon_sym_import_STAR, + STATE(649), 2, + sym_importClause, + sym_importGlobClause, + ACTIONS(1332), 3, ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1330), 11, + STATE(597), 3, + sym_shebangComment, + sym_lineComment, + aux_sym_module_repeat1, + ACTIONS(1334), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43287,7 +43548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22361] = 9, + [22581] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43296,20 +43557,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1332), 1, - anon_sym_COLON, - STATE(643), 1, - sym_typeAnnotation, - STATE(596), 2, + ACTIONS(1250), 1, + sym_identifier, + ACTIONS(1252), 1, + anon_sym_module, + ACTIONS(1254), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, + anon_sym_STAR, + ACTIONS(1260), 1, + anon_sym_DQUOTE, + ACTIONS(1262), 1, + anon_sym_POUND_DQUOTE, + STATE(359), 1, + sym_qualifiedIdentifier, + STATE(375), 1, + sym_stringConstant, + STATE(386), 1, + sym_type, + ACTIONS(1256), 2, + anon_sym_unknown, + anon_sym_nothing, + STATE(598), 2, + sym_shebangComment, + sym_lineComment, + STATE(376), 8, + sym_stringLiteralType, + sym_declaredType, + sym_parenthesizedType, + sym_nullableType, + sym_constrainedType, + sym_unionType, + sym_unionDefaultType, + sym_functionLiteralType, + [22639] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(636), 1, + sym_extendsOrAmendsClause, + ACTIONS(19), 2, + anon_sym_extends, + anon_sym_amends, + STATE(599), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1342), 4, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1344), 12, + anon_sym_import, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [22683] = 7, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + STATE(600), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1334), 5, + ACTIONS(1346), 7, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_EQ, anon_sym_AT, + anon_sym_DASH_GT, + anon_sym_COLON, aux_sym_docComment_token1, - ACTIONS(1336), 11, + ACTIONS(1348), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43321,7 +43657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22404] = 7, + [22722] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43330,18 +43666,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(597), 2, + ACTIONS(1214), 1, + anon_sym_extends, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(651), 1, + sym_classExtendsClause, + STATE(666), 1, + sym_classBody, + STATE(601), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1338), 7, + ACTIONS(1236), 3, ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_AT, - anon_sym_DASH_GT, - anon_sym_COLON, aux_sym_docComment_token1, - ACTIONS(1340), 11, + ACTIONS(1238), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43353,7 +43693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22443] = 7, + [22769] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43362,18 +43702,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(598), 2, + ACTIONS(1306), 1, + anon_sym_LBRACE, + STATE(609), 1, + aux_sym_classProperty_repeat1, + STATE(654), 1, + sym_objectBody, + STATE(602), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1342), 6, + ACTIONS(1326), 4, ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RBRACE, anon_sym_AT, - anon_sym_LPAREN, aux_sym_docComment_token1, - ACTIONS(1344), 12, - anon_sym_extends, + ACTIONS(1328), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43385,7 +43728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22482] = 11, + [22814] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43394,22 +43737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1198), 1, - anon_sym_extends, - ACTIONS(1200), 1, - anon_sym_LBRACE, - STATE(649), 1, - sym_classExtendsClause, - STATE(666), 1, - sym_classBody, - STATE(599), 2, + STATE(603), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1204), 3, + ACTIONS(1350), 6, ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_AT, + anon_sym_LPAREN, aux_sym_docComment_token1, - ACTIONS(1206), 11, + ACTIONS(1352), 12, + anon_sym_extends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43421,7 +43760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22529] = 7, + [22853] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43430,18 +43769,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(600), 2, + ACTIONS(1214), 1, + anon_sym_extends, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(656), 1, + sym_classExtendsClause, + STATE(673), 1, + sym_classBody, + STATE(604), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1346), 6, + ACTIONS(1354), 3, ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_AT, - anon_sym_LPAREN, aux_sym_docComment_token1, - ACTIONS(1348), 12, - anon_sym_extends, + ACTIONS(1356), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43453,7 +43796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22568] = 10, + [22900] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43462,21 +43805,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, STATE(609), 1, aux_sym_classProperty_repeat1, - STATE(644), 1, + STATE(654), 1, sym_objectBody, - STATE(601), 2, + STATE(605), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1286), 4, + ACTIONS(909), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1288), 11, + ACTIONS(911), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43488,7 +43831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22613] = 9, + [22945] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43497,20 +43840,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1332), 1, + ACTIONS(1362), 1, anon_sym_COLON, - STATE(631), 1, + STATE(653), 1, sym_typeAnnotation, - STATE(602), 2, + STATE(606), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1350), 5, + ACTIONS(1358), 5, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1352), 11, + ACTIONS(1360), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43522,7 +43865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22656] = 10, + [22988] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43531,21 +43874,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, STATE(609), 1, aux_sym_classProperty_repeat1, - STATE(644), 1, + STATE(654), 1, sym_objectBody, - STATE(603), 2, + STATE(607), 2, sym_shebangComment, sym_lineComment, - ACTIONS(903), 4, + ACTIONS(913), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(905), 11, + ACTIONS(915), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43557,7 +43900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22701] = 10, + [23033] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43566,21 +43909,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, STATE(609), 1, aux_sym_classProperty_repeat1, - STATE(644), 1, + STATE(654), 1, sym_objectBody, - STATE(604), 2, + STATE(608), 2, sym_shebangComment, sym_lineComment, - ACTIONS(895), 4, + ACTIONS(929), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(897), 11, + ACTIONS(931), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43592,7 +43935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22746] = 11, + [23078] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43601,22 +43944,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1198), 1, - anon_sym_extends, - ACTIONS(1200), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - STATE(634), 1, - sym_classExtendsClause, - STATE(660), 1, - sym_classBody, - STATE(605), 2, + STATE(654), 1, + sym_objectBody, + STATE(609), 3, sym_shebangComment, sym_lineComment, - ACTIONS(1228), 3, + aux_sym_classProperty_repeat1, + ACTIONS(798), 4, ts_builtin_sym_end, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1230), 11, + ACTIONS(796), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43628,7 +43969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22793] = 11, + [23121] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43637,22 +43978,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1198), 1, + ACTIONS(1214), 1, anon_sym_extends, - ACTIONS(1200), 1, + ACTIONS(1216), 1, anon_sym_LBRACE, STATE(638), 1, sym_classExtendsClause, - STATE(670), 1, + STATE(668), 1, sym_classBody, - STATE(606), 2, + STATE(610), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1216), 3, + ACTIONS(1232), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1218), 11, + ACTIONS(1234), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43664,7 +44005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22840] = 7, + [23168] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43673,15 +44014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(607), 2, + STATE(611), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1354), 4, + ACTIONS(1367), 4, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1356), 14, + ACTIONS(1369), 14, anon_sym_extends, anon_sym_amends, anon_sym_import, @@ -43696,7 +44037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22879] = 10, + [23207] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43705,21 +44046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, - anon_sym_LBRACE, - STATE(609), 1, - aux_sym_classProperty_repeat1, - STATE(644), 1, - sym_objectBody, - STATE(608), 2, + STATE(612), 2, sym_shebangComment, sym_lineComment, - ACTIONS(907), 4, + ACTIONS(1371), 4, ts_builtin_sym_end, - anon_sym_RBRACE, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(909), 11, + ACTIONS(1373), 14, + anon_sym_extends, + anon_sym_amends, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43731,7 +44069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22924] = 9, + [23246] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43740,20 +44078,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1358), 1, - anon_sym_LBRACE, - STATE(644), 1, - sym_objectBody, - STATE(609), 3, + STATE(613), 2, sym_shebangComment, sym_lineComment, - aux_sym_classProperty_repeat1, - ACTIONS(788), 4, + ACTIONS(1375), 7, ts_builtin_sym_end, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, + anon_sym_DASH_GT, + anon_sym_COLON, aux_sym_docComment_token1, - ACTIONS(786), 11, + ACTIONS(1377), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43765,7 +44101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [22967] = 7, + [23285] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43774,18 +44110,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(610), 2, + ACTIONS(1362), 1, + anon_sym_COLON, + STATE(642), 1, + sym_typeAnnotation, + STATE(614), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1361), 7, + ACTIONS(1379), 5, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_EQ, anon_sym_AT, - anon_sym_DASH_GT, - anon_sym_COLON, aux_sym_docComment_token1, - ACTIONS(1363), 11, + ACTIONS(1381), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43797,7 +44135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23006] = 7, + [23328] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43806,10 +44144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(611), 2, + STATE(615), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1365), 7, + ACTIONS(1383), 7, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_EQ, @@ -43817,7 +44155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COLON, aux_sym_docComment_token1, - ACTIONS(1367), 11, + ACTIONS(1385), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43829,7 +44167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23045] = 11, + [23367] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43838,22 +44176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1198), 1, - anon_sym_extends, - ACTIONS(1200), 1, - anon_sym_LBRACE, - STATE(641), 1, - sym_classExtendsClause, - STATE(668), 1, - sym_classBody, - STATE(612), 2, + STATE(616), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1369), 3, + ACTIONS(1387), 6, ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_AT, + anon_sym_LPAREN, aux_sym_docComment_token1, - ACTIONS(1371), 11, + ACTIONS(1389), 12, + anon_sym_extends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43865,7 +44199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23092] = 7, + [23406] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43874,18 +44208,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(613), 2, + ACTIONS(1362), 1, + anon_sym_COLON, + STATE(647), 1, + sym_typeAnnotation, + STATE(617), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1373), 4, + ACTIONS(1391), 5, ts_builtin_sym_end, - anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1375), 14, + ACTIONS(1393), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [23449] = 11, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1214), 1, anon_sym_extends, - anon_sym_amends, - anon_sym_import, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(646), 1, + sym_classExtendsClause, + STATE(671), 1, + sym_classBody, + STATE(618), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1246), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1248), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43897,7 +44269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23131] = 10, + [23496] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43906,21 +44278,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, STATE(609), 1, aux_sym_classProperty_repeat1, - STATE(644), 1, + STATE(654), 1, sym_objectBody, - STATE(614), 2, + STATE(619), 2, sym_shebangComment, sym_lineComment, - ACTIONS(883), 4, + ACTIONS(905), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(885), 11, + ACTIONS(907), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43932,7 +44304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23176] = 10, + [23541] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43941,20 +44313,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1226), 1, + ACTIONS(1230), 1, anon_sym_PIPE, - STATE(615), 2, + STATE(620), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1377), 3, + ACTIONS(1395), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1379), 11, + ACTIONS(1397), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -43966,7 +44338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23220] = 8, + [23585] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -43975,17 +44347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1385), 1, + ACTIONS(1403), 1, anon_sym_as, - STATE(616), 2, + STATE(621), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1381), 4, + ACTIONS(1399), 4, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1383), 12, + ACTIONS(1401), 12, anon_sym_import, anon_sym_class, anon_sym_typealias, @@ -43998,7 +44370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23260] = 10, + [23625] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44007,20 +44379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, - anon_sym_LPAREN, - ACTIONS(1057), 1, - anon_sym_QMARK, - ACTIONS(1226), 1, - anon_sym_PIPE, - STATE(617), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1387), 3, - ts_builtin_sym_end, + ACTIONS(1407), 1, anon_sym_AT, + ACTIONS(1409), 1, aux_sym_docComment_token1, - ACTIONS(1389), 11, + STATE(622), 3, + sym_shebangComment, + sym_lineComment, + aux_sym_docComment_repeat1, + ACTIONS(1405), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44032,7 +44402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23304] = 8, + [23665] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44041,18 +44411,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1395), 1, - anon_sym_as, - STATE(618), 2, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(1161), 1, + sym_identifier, + ACTIONS(1163), 1, + anon_sym_class, + ACTIONS(1165), 1, + anon_sym_typealias, + STATE(632), 1, + aux_sym_moduleHeader_repeat1, + STATE(648), 1, + sym_methodHeader, + STATE(659), 1, + sym_annotation, + STATE(678), 1, + aux_sym_moduleClause_repeat1, + STATE(681), 1, + sym_modifier, + STATE(623), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(33), 7, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + [23721] = 10, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1077), 1, + anon_sym_LPAREN, + ACTIONS(1079), 1, + anon_sym_QMARK, + ACTIONS(1230), 1, + anon_sym_PIPE, + STATE(624), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1391), 4, + ACTIONS(1412), 3, ts_builtin_sym_end, - anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1393), 12, - anon_sym_import, + ACTIONS(1414), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44064,7 +44476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23344] = 9, + [23765] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44073,16 +44485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, - anon_sym_LBRACE, - ACTIONS(1399), 1, + ACTIONS(1418), 1, anon_sym_AT, - STATE(653), 1, - sym_objectBody, - STATE(619), 2, + ACTIONS(1420), 1, + aux_sym_docComment_token1, + STATE(622), 1, + aux_sym_docComment_repeat1, + STATE(625), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1397), 14, + ACTIONS(1416), 14, anon_sym_module, anon_sym_extends, anon_sym_amends, @@ -44097,7 +44509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23386] = 9, + [23807] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44106,19 +44518,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(979), 1, - anon_sym_LT, - STATE(655), 1, - sym_typeArgumentList, - STATE(620), 2, + ACTIONS(1077), 1, + anon_sym_LPAREN, + ACTIONS(1079), 1, + anon_sym_QMARK, + ACTIONS(1230), 1, + anon_sym_PIPE, + STATE(626), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1401), 4, + ACTIONS(1422), 3, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1403), 11, + ACTIONS(1424), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44130,7 +44543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23428] = 9, + [23851] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44139,16 +44552,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1407), 1, + ACTIONS(1077), 1, + anon_sym_LPAREN, + ACTIONS(1079), 1, + anon_sym_QMARK, + ACTIONS(1230), 1, + anon_sym_PIPE, + STATE(627), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1426), 3, + ts_builtin_sym_end, anon_sym_AT, - ACTIONS(1409), 1, aux_sym_docComment_token1, - STATE(630), 1, + ACTIONS(1428), 11, + anon_sym_class, + anon_sym_typealias, + anon_sym_function, + anon_sym_external, + anon_sym_abstract, + anon_sym_open, + anon_sym_local, + anon_sym_hidden, + anon_sym_fixed, + anon_sym_const, + sym_identifier, + [23895] = 9, + ACTIONS(3), 1, + anon_sym_POUND_BANG, + ACTIONS(5), 1, + aux_sym_lineComment_token1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH_DOLLAR, + ACTIONS(9), 1, + sym_blockComment, + ACTIONS(1420), 1, + aux_sym_docComment_token1, + ACTIONS(1432), 1, + anon_sym_AT, + STATE(625), 1, aux_sym_docComment_repeat1, - STATE(621), 2, + STATE(628), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1405), 14, + ACTIONS(1430), 14, anon_sym_module, anon_sym_extends, anon_sym_amends, @@ -44163,7 +44610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23470] = 16, + [23937] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44172,30 +44619,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, + ACTIONS(1077), 1, + anon_sym_LPAREN, + ACTIONS(1079), 1, + anon_sym_QMARK, + ACTIONS(1230), 1, + anon_sym_PIPE, + STATE(629), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1434), 3, + ts_builtin_sym_end, anon_sym_AT, - ACTIONS(1143), 1, - sym_identifier, - ACTIONS(1145), 1, + aux_sym_docComment_token1, + ACTIONS(1436), 11, anon_sym_class, - ACTIONS(1147), 1, anon_sym_typealias, - STATE(629), 1, - aux_sym_moduleHeader_repeat1, - STATE(645), 1, - sym_methodHeader, - STATE(656), 1, - sym_annotation, - STATE(672), 1, - aux_sym_moduleClause_repeat1, - STATE(676), 1, - sym_modifier, - STATE(622), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(33), 7, + anon_sym_function, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -44203,7 +44643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [23526] = 16, + sym_identifier, + [23981] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44216,23 +44657,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(31), 1, anon_sym_AT, - ACTIONS(1143), 1, + ACTIONS(1161), 1, sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1163), 1, anon_sym_class, - ACTIONS(1147), 1, + ACTIONS(1165), 1, anon_sym_typealias, - STATE(626), 1, + STATE(633), 1, aux_sym_moduleHeader_repeat1, - STATE(645), 1, + STATE(648), 1, sym_methodHeader, - STATE(656), 1, + STATE(659), 1, sym_annotation, - STATE(672), 1, + STATE(678), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(623), 2, + STATE(630), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -44243,7 +44684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [23582] = 10, + [24037] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44252,20 +44693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, - anon_sym_LPAREN, - ACTIONS(1057), 1, - anon_sym_QMARK, - ACTIONS(1226), 1, - anon_sym_PIPE, - STATE(624), 2, + ACTIONS(1306), 1, + anon_sym_LBRACE, + ACTIONS(1440), 1, + anon_sym_AT, + STATE(662), 1, + sym_objectBody, + STATE(631), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1411), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1413), 11, + ACTIONS(1438), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44277,7 +44717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23626] = 10, + [24079] = 16, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44286,23 +44726,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, - anon_sym_LPAREN, - ACTIONS(1057), 1, - anon_sym_QMARK, - ACTIONS(1226), 1, - anon_sym_PIPE, - STATE(625), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1415), 3, - ts_builtin_sym_end, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1417), 11, + ACTIONS(1167), 1, + sym_identifier, + ACTIONS(1169), 1, anon_sym_class, + ACTIONS(1171), 1, anon_sym_typealias, - anon_sym_function, + STATE(633), 1, + aux_sym_moduleHeader_repeat1, + STATE(639), 1, + sym_methodHeader, + STATE(659), 1, + sym_annotation, + STATE(679), 1, + aux_sym_moduleClause_repeat1, + STATE(681), 1, + sym_modifier, + STATE(632), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -44310,8 +44757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [23670] = 8, + [24135] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44320,15 +44766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1421), 1, + ACTIONS(1444), 1, anon_sym_AT, - STATE(656), 1, + STATE(659), 1, sym_annotation, - STATE(626), 3, + STATE(633), 3, sym_shebangComment, sym_lineComment, aux_sym_moduleHeader_repeat1, - ACTIONS(1419), 14, + ACTIONS(1442), 14, anon_sym_module, anon_sym_extends, anon_sym_amends, @@ -44343,7 +44789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23710] = 10, + [24175] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44352,20 +44798,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, - anon_sym_LPAREN, - ACTIONS(1057), 1, - anon_sym_QMARK, - ACTIONS(1226), 1, - anon_sym_PIPE, - STATE(627), 2, + ACTIONS(997), 1, + anon_sym_LT, + STATE(657), 1, + sym_typeArgumentList, + STATE(634), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1424), 3, + ACTIONS(1447), 4, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1426), 11, + ACTIONS(1449), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44377,7 +44822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23754] = 9, + [24217] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44386,19 +44831,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1409), 1, - aux_sym_docComment_token1, - ACTIONS(1430), 1, - anon_sym_AT, - STATE(621), 1, - aux_sym_docComment_repeat1, - STATE(628), 2, + ACTIONS(1455), 1, + anon_sym_as, + STATE(635), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1428), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, + ACTIONS(1451), 4, + ts_builtin_sym_end, + anon_sym_import_STAR, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1453), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44410,7 +44854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23796] = 16, + [24257] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44419,58 +44863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1151), 1, - anon_sym_class, - ACTIONS(1153), 1, - anon_sym_typealias, - STATE(626), 1, - aux_sym_moduleHeader_repeat1, - STATE(648), 1, - sym_methodHeader, - STATE(656), 1, - sym_annotation, - STATE(674), 1, - aux_sym_moduleClause_repeat1, - STATE(676), 1, - sym_modifier, - STATE(629), 2, + STATE(636), 2, sym_shebangComment, sym_lineComment, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [23852] = 8, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - ACTIONS(1434), 1, + ACTIONS(1318), 4, + ts_builtin_sym_end, + anon_sym_import_STAR, anon_sym_AT, - ACTIONS(1436), 1, aux_sym_docComment_token1, - STATE(630), 3, - sym_shebangComment, - sym_lineComment, - aux_sym_docComment_repeat1, - ACTIONS(1432), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, + ACTIONS(1320), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44482,7 +44884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23892] = 7, + [24294] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44491,16 +44893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(631), 2, + STATE(637), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1439), 5, + ACTIONS(1342), 4, ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1441), 11, + ACTIONS(1344), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44512,7 +44914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23929] = 7, + [24331] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44521,16 +44923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(632), 2, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(671), 1, + sym_classBody, + STATE(638), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1350), 5, + ACTIONS(1246), 3, ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1352), 11, + ACTIONS(1248), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44542,7 +44946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [23966] = 7, + [24372] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44551,16 +44955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(633), 2, + ACTIONS(1457), 1, + anon_sym_EQ, + STATE(639), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1443), 4, + ACTIONS(917), 4, ts_builtin_sym_end, - anon_sym_import_STAR, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1445), 12, - anon_sym_import, + ACTIONS(919), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44572,7 +44977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24003] = 9, + [24411] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44581,18 +44986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1200), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_classBody, - STATE(634), 2, + STATE(640), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1216), 3, + ACTIONS(1459), 4, ts_builtin_sym_end, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1218), 11, + ACTIONS(1461), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44604,7 +45007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24044] = 8, + [24448] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44613,17 +45016,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1451), 1, - anon_sym_EQ, - STATE(635), 2, + STATE(641), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1447), 4, + ACTIONS(1264), 4, ts_builtin_sym_end, - anon_sym_RBRACE, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1449), 11, + ACTIONS(1266), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44635,7 +45037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24083] = 7, + [24485] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44644,16 +45046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(636), 2, + STATE(642), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1453), 4, + ACTIONS(1391), 5, ts_builtin_sym_end, - anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1455), 12, - anon_sym_import, + ACTIONS(1393), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44665,7 +45067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24120] = 7, + [24522] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44674,15 +45076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(637), 2, + STATE(643), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1457), 4, + ACTIONS(1463), 4, ts_builtin_sym_end, anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1459), 12, + ACTIONS(1465), 12, anon_sym_import, anon_sym_class, anon_sym_typealias, @@ -44695,7 +45097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24157] = 9, + [24559] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44704,18 +45106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1200), 1, - anon_sym_LBRACE, - STATE(668), 1, - sym_classBody, - STATE(638), 2, + STATE(644), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1369), 3, + ACTIONS(1467), 4, ts_builtin_sym_end, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1371), 11, + ACTIONS(1469), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44727,7 +45127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24198] = 7, + [24596] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44736,16 +45136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(639), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1282), 4, - ts_builtin_sym_end, - anon_sym_import_STAR, + ACTIONS(1473), 2, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1284), 12, - anon_sym_import, + STATE(645), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1471), 14, + anon_sym_module, + anon_sym_extends, + anon_sym_amends, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44757,7 +45157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24235] = 7, + [24633] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44766,16 +45166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(640), 2, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(673), 1, + sym_classBody, + STATE(646), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1461), 4, + ACTIONS(1354), 3, ts_builtin_sym_end, - anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1463), 12, - anon_sym_import, + ACTIONS(1356), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44787,7 +45189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24272] = 9, + [24674] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44796,18 +45198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1200), 1, - anon_sym_LBRACE, - STATE(661), 1, - sym_classBody, - STATE(641), 2, + STATE(647), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1465), 3, + ACTIONS(1475), 5, ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1467), 11, + ACTIONS(1477), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44819,7 +45219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24313] = 9, + [24711] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44828,18 +45228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1200), 1, - anon_sym_LBRACE, - STATE(666), 1, - sym_classBody, - STATE(642), 2, + ACTIONS(1483), 1, + anon_sym_EQ, + STATE(648), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1204), 3, + ACTIONS(1479), 4, ts_builtin_sym_end, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1206), 11, + ACTIONS(1481), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44851,7 +45250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24354] = 7, + [24750] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44860,16 +45259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(643), 2, + STATE(649), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1328), 5, + ACTIONS(1485), 4, ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1330), 11, + ACTIONS(1487), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44881,7 +45280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24391] = 7, + [24787] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44890,16 +45289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(644), 2, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(666), 1, + sym_classBody, + STATE(650), 2, sym_shebangComment, sym_lineComment, - ACTIONS(560), 5, + ACTIONS(1236), 3, ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(558), 11, + ACTIONS(1238), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44911,7 +45312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24428] = 8, + [24828] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44920,17 +45321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1473), 1, - anon_sym_EQ, - STATE(645), 2, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(668), 1, + sym_classBody, + STATE(651), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1469), 4, + ACTIONS(1232), 3, ts_builtin_sym_end, - anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1471), 11, + ACTIONS(1234), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44942,7 +45344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24467] = 7, + [24869] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44951,16 +45353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(646), 2, + ACTIONS(1493), 1, + anon_sym_EQ, + STATE(652), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1232), 4, + ACTIONS(1489), 4, ts_builtin_sym_end, - anon_sym_import_STAR, + anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1234), 12, - anon_sym_import, + ACTIONS(1491), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -44972,7 +45375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24504] = 7, + [24908] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -44981,16 +45384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(647), 2, + STATE(653), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1294), 4, + ACTIONS(1379), 5, ts_builtin_sym_end, - anon_sym_import_STAR, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1296), 12, - anon_sym_import, + ACTIONS(1381), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45002,7 +45405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24541] = 8, + [24945] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45011,17 +45414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1475), 1, - anon_sym_EQ, - STATE(648), 2, + STATE(654), 2, sym_shebangComment, sym_lineComment, - ACTIONS(887), 4, + ACTIONS(564), 5, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(889), 11, + ACTIONS(562), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45033,7 +45435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24580] = 9, + [24982] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45042,18 +45444,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1200), 1, - anon_sym_LBRACE, - STATE(660), 1, - sym_classBody, - STATE(649), 2, + STATE(655), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1228), 3, + ACTIONS(1495), 4, ts_builtin_sym_end, + anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1230), 11, + ACTIONS(1497), 12, + anon_sym_import, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45065,7 +45465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24621] = 7, + [25019] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45074,16 +45474,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(650), 2, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(670), 1, + sym_classBody, + STATE(656), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1477), 4, + ACTIONS(1499), 3, ts_builtin_sym_end, - anon_sym_import_STAR, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1479), 12, - anon_sym_import, + ACTIONS(1501), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45095,7 +45497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24658] = 7, + [25060] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45104,16 +45506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1483), 2, - anon_sym_AT, - aux_sym_docComment_token1, - STATE(651), 2, + STATE(657), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1481), 14, - anon_sym_module, - anon_sym_extends, - anon_sym_amends, + ACTIONS(1503), 4, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1505), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45125,7 +45526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24695] = 14, + [25096] = 14, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45138,19 +45539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(31), 1, anon_sym_AT, - ACTIONS(1143), 1, + ACTIONS(1161), 1, sym_identifier, - STATE(645), 1, - sym_methodHeader, - STATE(654), 1, + STATE(633), 1, aux_sym_moduleHeader_repeat1, - STATE(656), 1, + STATE(648), 1, + sym_methodHeader, + STATE(659), 1, sym_annotation, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(680), 1, + STATE(683), 1, aux_sym_moduleClause_repeat1, - STATE(652), 2, + STATE(658), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -45161,7 +45562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [24745] = 7, + [25146] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45170,12 +45571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1487), 1, + ACTIONS(1509), 1, anon_sym_AT, - STATE(653), 2, + STATE(659), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1485), 14, + ACTIONS(1507), 14, anon_sym_module, anon_sym_extends, anon_sym_amends, @@ -45190,7 +45591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24781] = 14, + [25182] = 14, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45203,19 +45604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(31), 1, anon_sym_AT, - ACTIONS(1149), 1, + ACTIONS(1161), 1, sym_identifier, - STATE(626), 1, - aux_sym_moduleHeader_repeat1, STATE(648), 1, sym_methodHeader, - STATE(656), 1, + STATE(659), 1, sym_annotation, - STATE(676), 1, + STATE(661), 1, + aux_sym_moduleHeader_repeat1, + STATE(681), 1, sym_modifier, - STATE(679), 1, + STATE(683), 1, aux_sym_moduleClause_repeat1, - STATE(654), 2, + STATE(660), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -45226,7 +45627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [24831] = 7, + [25232] = 14, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45235,18 +45636,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(655), 2, + ACTIONS(29), 1, + anon_sym_function, + ACTIONS(31), 1, + anon_sym_AT, + ACTIONS(1167), 1, + sym_identifier, + STATE(633), 1, + aux_sym_moduleHeader_repeat1, + STATE(639), 1, + sym_methodHeader, + STATE(659), 1, + sym_annotation, + STATE(681), 1, + sym_modifier, + STATE(685), 1, + aux_sym_moduleClause_repeat1, + STATE(661), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1489), 4, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1491), 11, - anon_sym_class, - anon_sym_typealias, - anon_sym_function, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -45254,8 +45663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [24867] = 7, + [25282] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45264,12 +45672,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1495), 1, + ACTIONS(1513), 1, anon_sym_AT, - STATE(656), 2, + STATE(662), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1493), 14, + ACTIONS(1511), 14, anon_sym_module, anon_sym_extends, anon_sym_amends, @@ -45284,7 +45692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24903] = 14, + [25318] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45293,50 +45701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(29), 1, - anon_sym_function, - ACTIONS(31), 1, - anon_sym_AT, - ACTIONS(1143), 1, - sym_identifier, - STATE(626), 1, - aux_sym_moduleHeader_repeat1, - STATE(645), 1, - sym_methodHeader, - STATE(656), 1, - sym_annotation, - STATE(676), 1, - sym_modifier, - STATE(680), 1, - aux_sym_moduleClause_repeat1, - STATE(657), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(33), 7, - anon_sym_external, - anon_sym_abstract, - anon_sym_open, - anon_sym_local, - anon_sym_hidden, - anon_sym_fixed, - anon_sym_const, - [24953] = 7, - ACTIONS(3), 1, - anon_sym_POUND_BANG, - ACTIONS(5), 1, - aux_sym_lineComment_token1, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(9), 1, - sym_blockComment, - STATE(658), 2, + STATE(663), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1497), 3, + ACTIONS(1515), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1499), 11, + ACTIONS(1517), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45348,7 +45720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [24988] = 7, + [25353] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45357,17 +45729,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(659), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(1204), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1206), 11, + ACTIONS(1161), 1, + sym_identifier, + ACTIONS(1163), 1, anon_sym_class, + ACTIONS(1165), 1, anon_sym_typealias, + ACTIONS(1519), 1, + anon_sym_module, + ACTIONS(1521), 1, anon_sym_function, + STATE(665), 1, + aux_sym_moduleClause_repeat1, + STATE(681), 1, + sym_modifier, + STATE(664), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -45375,8 +45754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [25023] = 7, + [25400] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45385,17 +45763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(660), 2, + STATE(681), 1, + sym_modifier, + STATE(665), 3, sym_shebangComment, sym_lineComment, - ACTIONS(1216), 3, - ts_builtin_sym_end, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1218), 11, + aux_sym_moduleClause_repeat1, + ACTIONS(1523), 5, + anon_sym_module, anon_sym_class, anon_sym_typealias, anon_sym_function, + sym_identifier, + ACTIONS(1525), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -45403,8 +45783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - sym_identifier, - [25058] = 7, + [25437] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45413,14 +45792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(661), 2, + STATE(666), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1501), 3, + ACTIONS(1232), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1503), 11, + ACTIONS(1234), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45432,7 +45811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [25093] = 13, + [25472] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45441,21 +45820,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1505), 1, + ACTIONS(1167), 1, sym_identifier, - ACTIONS(1507), 1, - anon_sym_module, - ACTIONS(1509), 1, + ACTIONS(1169), 1, anon_sym_class, - ACTIONS(1511), 1, + ACTIONS(1171), 1, anon_sym_typealias, - ACTIONS(1513), 1, + ACTIONS(1519), 1, + anon_sym_module, + ACTIONS(1521), 1, anon_sym_function, - STATE(664), 1, + STATE(665), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(662), 2, + STATE(667), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -45466,7 +45845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25140] = 7, + [25519] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45475,14 +45854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(663), 2, + STATE(668), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1515), 3, + ACTIONS(1246), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1517), 11, + ACTIONS(1248), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45494,7 +45873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [25175] = 8, + [25554] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45503,19 +45882,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(676), 1, - sym_modifier, - STATE(664), 3, + STATE(669), 2, sym_shebangComment, sym_lineComment, - aux_sym_moduleClause_repeat1, - ACTIONS(1519), 5, - anon_sym_module, + ACTIONS(1528), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1530), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, - sym_identifier, - ACTIONS(1521), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -45523,7 +45900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25212] = 7, + sym_identifier, + [25589] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45532,14 +45910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(665), 2, + STATE(670), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1524), 3, + ACTIONS(1532), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1526), 11, + ACTIONS(1534), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45551,7 +45929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [25247] = 7, + [25624] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45560,14 +45938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(666), 2, + STATE(671), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1228), 3, + ACTIONS(1354), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1230), 11, + ACTIONS(1356), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45579,7 +45957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [25282] = 13, + [25659] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45588,24 +45966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1151), 1, + STATE(672), 2, + sym_shebangComment, + sym_lineComment, + ACTIONS(1236), 3, + ts_builtin_sym_end, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1238), 11, anon_sym_class, - ACTIONS(1153), 1, anon_sym_typealias, - ACTIONS(1507), 1, - anon_sym_module, - ACTIONS(1513), 1, anon_sym_function, - STATE(664), 1, - aux_sym_moduleClause_repeat1, - STATE(676), 1, - sym_modifier, - STATE(667), 2, - sym_shebangComment, - sym_lineComment, - ACTIONS(33), 7, anon_sym_external, anon_sym_abstract, anon_sym_open, @@ -45613,7 +45984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25329] = 7, + sym_identifier, + [25694] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45622,14 +45994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(668), 2, + STATE(673), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1465), 3, + ACTIONS(1499), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1467), 11, + ACTIONS(1501), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45641,7 +46013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [25364] = 13, + [25729] = 13, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45650,21 +46022,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1143), 1, + ACTIONS(1519), 1, + anon_sym_module, + ACTIONS(1521), 1, + anon_sym_function, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1538), 1, anon_sym_class, - ACTIONS(1147), 1, + ACTIONS(1540), 1, anon_sym_typealias, - ACTIONS(1507), 1, - anon_sym_module, - ACTIONS(1513), 1, - anon_sym_function, - STATE(664), 1, + STATE(665), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(669), 2, + STATE(674), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -45675,7 +46047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25411] = 7, + [25776] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45684,14 +46056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(670), 2, + STATE(675), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1369), 3, + ACTIONS(1542), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1371), 11, + ACTIONS(1544), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45703,7 +46075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [25446] = 7, + [25811] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45712,14 +46084,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(671), 2, + STATE(676), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1528), 3, + ACTIONS(1546), 3, ts_builtin_sym_end, anon_sym_AT, aux_sym_docComment_token1, - ACTIONS(1530), 11, + ACTIONS(1548), 11, anon_sym_class, anon_sym_typealias, anon_sym_function, @@ -45731,7 +46103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [25481] = 12, + [25846] = 12, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45740,19 +46112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1149), 1, + ACTIONS(1161), 1, sym_identifier, - ACTIONS(1151), 1, + ACTIONS(1163), 1, anon_sym_class, - ACTIONS(1153), 1, + ACTIONS(1165), 1, anon_sym_typealias, - ACTIONS(1513), 1, + ACTIONS(1521), 1, anon_sym_function, - STATE(664), 1, + STATE(665), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(672), 2, + STATE(677), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -45763,7 +46135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25525] = 12, + [25890] = 12, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45772,19 +46144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1143), 1, + ACTIONS(1167), 1, sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1169), 1, anon_sym_class, - ACTIONS(1147), 1, + ACTIONS(1171), 1, anon_sym_typealias, - ACTIONS(1513), 1, + ACTIONS(1521), 1, anon_sym_function, - STATE(664), 1, + STATE(665), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(673), 2, + STATE(678), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -45795,7 +46167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25569] = 12, + [25934] = 12, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45804,19 +46176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1505), 1, + ACTIONS(1521), 1, + anon_sym_function, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1538), 1, anon_sym_class, - ACTIONS(1511), 1, + ACTIONS(1540), 1, anon_sym_typealias, - ACTIONS(1513), 1, - anon_sym_function, - STATE(664), 1, + STATE(665), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(674), 2, + STATE(679), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -45827,7 +46199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25613] = 7, + [25978] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45836,14 +46208,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(675), 2, + STATE(680), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1534), 3, - anon_sym_RBRACE, - anon_sym_AT, - aux_sym_docComment_token1, - ACTIONS(1532), 9, + ACTIONS(1550), 12, + anon_sym_module, + anon_sym_class, + anon_sym_typealias, anon_sym_function, anon_sym_external, anon_sym_abstract, @@ -45853,7 +46224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [25646] = 6, + [26009] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45862,10 +46233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(676), 2, + STATE(681), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1536), 12, + ACTIONS(1552), 12, anon_sym_module, anon_sym_class, anon_sym_typealias, @@ -45878,7 +46249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [25677] = 6, + [26040] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45887,13 +46258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(677), 2, + STATE(682), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1538), 12, - anon_sym_module, - anon_sym_class, - anon_sym_typealias, + ACTIONS(1556), 3, + anon_sym_RBRACE, + anon_sym_AT, + aux_sym_docComment_token1, + ACTIONS(1554), 9, anon_sym_function, anon_sym_external, anon_sym_abstract, @@ -45903,7 +46275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fixed, anon_sym_const, sym_identifier, - [25708] = 10, + [26073] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45912,15 +46284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1540), 1, + ACTIONS(1167), 1, sym_identifier, - ACTIONS(1542), 1, + ACTIONS(1521), 1, anon_sym_function, - STATE(664), 1, + STATE(665), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(678), 2, + STATE(683), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -45931,7 +46303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25746] = 10, + [26111] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45940,15 +46312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1505), 1, + ACTIONS(1161), 1, sym_identifier, - ACTIONS(1513), 1, + ACTIONS(1521), 1, anon_sym_function, - STATE(664), 1, + STATE(665), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(679), 2, + STATE(684), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -45959,7 +46331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25784] = 10, + [26149] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45968,15 +46340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1513), 1, + ACTIONS(1521), 1, anon_sym_function, - STATE(664), 1, + ACTIONS(1536), 1, + sym_identifier, + STATE(665), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(680), 2, + STATE(685), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -45987,7 +46359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25822] = 10, + [26187] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -45996,15 +46368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1143), 1, + ACTIONS(1558), 1, sym_identifier, - ACTIONS(1513), 1, + ACTIONS(1560), 1, anon_sym_function, - STATE(664), 1, + STATE(665), 1, aux_sym_moduleClause_repeat1, - STATE(676), 1, + STATE(681), 1, sym_modifier, - STATE(681), 2, + STATE(686), 2, sym_shebangComment, sym_lineComment, ACTIONS(33), 7, @@ -46015,7 +46387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hidden, anon_sym_fixed, anon_sym_const, - [25860] = 7, + [26225] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46024,12 +46396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1544), 1, + ACTIONS(1562), 1, anon_sym_DASH_GT, - STATE(682), 2, + STATE(687), 2, sym_shebangComment, sym_lineComment, - ACTIONS(294), 9, + ACTIONS(285), 9, anon_sym_LBRACE, anon_sym_EQ, anon_sym_LPAREN, @@ -46039,7 +46411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE, anon_sym_GT, - [25891] = 11, + [26256] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46048,23 +46420,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1546), 1, + ACTIONS(1564), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1548), 1, + ACTIONS(1566), 1, sym_escapeSequence6, - ACTIONS(1550), 1, + ACTIONS(1568), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1552), 1, + ACTIONS(1570), 1, sym__ml6_string_chars, - STATE(728), 1, + STATE(733), 1, aux_sym_mlStringLiteral_repeat7, - STATE(683), 2, + STATE(688), 2, sym_shebangComment, sym_lineComment, - STATE(838), 2, + STATE(843), 2, sym_mlStringLiteralPart6, sym_interpolationExpr6, - [25927] = 11, + [26292] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46073,23 +46445,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1554), 1, + ACTIONS(1572), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - ACTIONS(1556), 1, + ACTIONS(1574), 1, sym_escapeSequence3, - ACTIONS(1558), 1, + ACTIONS(1576), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1560), 1, + ACTIONS(1578), 1, sym__sl3_string_chars, - STATE(738), 1, + STATE(743), 1, aux_sym_slStringLiteral_repeat4, - STATE(684), 2, + STATE(689), 2, sym_shebangComment, sym_lineComment, - STATE(877), 2, + STATE(882), 2, sym_slStringLiteralPart3, sym_interpolationExpr3, - [25963] = 9, + [26328] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46098,21 +46470,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - STATE(685), 2, + STATE(690), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1222), 4, + ACTIONS(1226), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_in, anon_sym_RPAREN, - [25995] = 11, + [26360] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46121,23 +46493,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1564), 1, + ACTIONS(1582), 1, anon_sym_DQUOTE_POUND_POUND, - ACTIONS(1566), 1, + ACTIONS(1584), 1, sym_escapeSequence2, - ACTIONS(1568), 1, + ACTIONS(1586), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1570), 1, + ACTIONS(1588), 1, sym__sl2_string_chars, - STATE(764), 1, + STATE(769), 1, aux_sym_slStringLiteral_repeat3, - STATE(686), 2, + STATE(691), 2, sym_shebangComment, sym_lineComment, - STATE(870), 2, + STATE(875), 2, sym_slStringLiteralPart2, sym_interpolationExpr2, - [26031] = 11, + [26396] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46146,23 +46518,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1564), 1, + ACTIONS(1582), 1, anon_sym_DQUOTE_POUND, - ACTIONS(1572), 1, + ACTIONS(1590), 1, sym_escapeSequence1, - ACTIONS(1574), 1, + ACTIONS(1592), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - STATE(781), 1, + STATE(786), 1, aux_sym_slStringLiteral_repeat2, - STATE(687), 2, + STATE(692), 2, sym_shebangComment, sym_lineComment, - STATE(872), 2, + STATE(877), 2, sym_slStringLiteralPart1, sym_interpolationExpr1, - [26067] = 11, + [26432] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46171,23 +46543,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1564), 1, + ACTIONS(1582), 1, anon_sym_DQUOTE, - ACTIONS(1578), 1, + ACTIONS(1596), 1, sym_escapeSequence, - ACTIONS(1580), 1, + ACTIONS(1598), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - STATE(780), 1, + STATE(785), 1, aux_sym_slStringLiteral_repeat1, - STATE(688), 2, + STATE(693), 2, sym_shebangComment, sym_lineComment, - STATE(871), 2, + STATE(876), 2, sym_slStringLiteralPart, sym_interpolationExpr, - [26103] = 11, + [26468] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46196,23 +46568,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1546), 1, + ACTIONS(1564), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(1584), 1, + ACTIONS(1602), 1, sym_escapeSequence, - ACTIONS(1586), 1, + ACTIONS(1604), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1606), 1, sym__ml_string_chars, - STATE(734), 1, + STATE(739), 1, aux_sym_mlStringLiteral_repeat1, - STATE(689), 2, + STATE(694), 2, sym_shebangComment, sym_lineComment, - STATE(836), 2, + STATE(841), 2, sym_mlStringLiteralPart, sym_interpolationExpr, - [26139] = 11, + [26504] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46221,23 +46593,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1546), 1, + ACTIONS(1564), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - ACTIONS(1590), 1, + ACTIONS(1608), 1, sym_escapeSequence1, - ACTIONS(1592), 1, + ACTIONS(1610), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1594), 1, + ACTIONS(1612), 1, sym__ml1_string_chars, - STATE(733), 1, + STATE(738), 1, aux_sym_mlStringLiteral_repeat2, - STATE(690), 2, + STATE(695), 2, sym_shebangComment, sym_lineComment, - STATE(833), 2, + STATE(838), 2, sym_mlStringLiteralPart1, sym_interpolationExpr1, - [26175] = 11, + [26540] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46246,23 +46618,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1546), 1, + ACTIONS(1564), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - ACTIONS(1596), 1, + ACTIONS(1614), 1, sym_escapeSequence2, - ACTIONS(1598), 1, + ACTIONS(1616), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1618), 1, sym__ml2_string_chars, - STATE(732), 1, + STATE(737), 1, aux_sym_mlStringLiteral_repeat3, - STATE(691), 2, + STATE(696), 2, sym_shebangComment, sym_lineComment, - STATE(844), 2, + STATE(849), 2, sym_mlStringLiteralPart2, sym_interpolationExpr2, - [26211] = 11, + [26576] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46271,23 +46643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1578), 1, + ACTIONS(1596), 1, sym_escapeSequence, - ACTIONS(1580), 1, + ACTIONS(1598), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1602), 1, + ACTIONS(1620), 1, anon_sym_DQUOTE, - STATE(720), 1, + STATE(725), 1, aux_sym_slStringLiteral_repeat1, - STATE(692), 2, + STATE(697), 2, sym_shebangComment, sym_lineComment, - STATE(871), 2, + STATE(876), 2, sym_slStringLiteralPart, sym_interpolationExpr, - [26247] = 11, + [26612] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46296,23 +46668,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1546), 1, + ACTIONS(1564), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - ACTIONS(1604), 1, + ACTIONS(1622), 1, sym_escapeSequence3, - ACTIONS(1606), 1, + ACTIONS(1624), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1608), 1, + ACTIONS(1626), 1, sym__ml3_string_chars, - STATE(731), 1, + STATE(736), 1, aux_sym_mlStringLiteral_repeat4, - STATE(693), 2, + STATE(698), 2, sym_shebangComment, sym_lineComment, - STATE(841), 2, + STATE(846), 2, sym_mlStringLiteralPart3, sym_interpolationExpr3, - [26283] = 11, + [26648] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46321,23 +46693,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1572), 1, + ACTIONS(1590), 1, sym_escapeSequence1, - ACTIONS(1574), 1, + ACTIONS(1592), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1602), 1, + ACTIONS(1620), 1, anon_sym_DQUOTE_POUND, - STATE(722), 1, + STATE(727), 1, aux_sym_slStringLiteral_repeat2, - STATE(694), 2, + STATE(699), 2, sym_shebangComment, sym_lineComment, - STATE(872), 2, + STATE(877), 2, sym_slStringLiteralPart1, sym_interpolationExpr1, - [26319] = 11, + [26684] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46346,23 +46718,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1566), 1, + ACTIONS(1584), 1, sym_escapeSequence2, - ACTIONS(1568), 1, + ACTIONS(1586), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1570), 1, + ACTIONS(1588), 1, sym__sl2_string_chars, - ACTIONS(1602), 1, + ACTIONS(1620), 1, anon_sym_DQUOTE_POUND_POUND, - STATE(727), 1, + STATE(732), 1, aux_sym_slStringLiteral_repeat3, - STATE(695), 2, + STATE(700), 2, sym_shebangComment, sym_lineComment, - STATE(870), 2, + STATE(875), 2, sym_slStringLiteralPart2, sym_interpolationExpr2, - [26355] = 11, + [26720] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46371,23 +46743,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1556), 1, + ACTIONS(1574), 1, sym_escapeSequence3, - ACTIONS(1558), 1, + ACTIONS(1576), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1560), 1, + ACTIONS(1578), 1, sym__sl3_string_chars, - ACTIONS(1602), 1, + ACTIONS(1620), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - STATE(743), 1, + STATE(748), 1, aux_sym_slStringLiteral_repeat4, - STATE(696), 2, + STATE(701), 2, sym_shebangComment, sym_lineComment, - STATE(877), 2, + STATE(882), 2, sym_slStringLiteralPart3, sym_interpolationExpr3, - [26391] = 11, + [26756] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46396,23 +46768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1602), 1, + ACTIONS(1620), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1610), 1, + ACTIONS(1628), 1, sym_escapeSequence4, - ACTIONS(1612), 1, + ACTIONS(1630), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1614), 1, + ACTIONS(1632), 1, sym__sl4_string_chars, - STATE(745), 1, + STATE(750), 1, aux_sym_slStringLiteral_repeat5, - STATE(697), 2, + STATE(702), 2, sym_shebangComment, sym_lineComment, - STATE(867), 2, + STATE(872), 2, sym_slStringLiteralPart4, sym_interpolationExpr4, - [26427] = 11, + [26792] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46421,23 +46793,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1602), 1, + ACTIONS(1620), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1616), 1, + ACTIONS(1634), 1, sym_escapeSequence5, - ACTIONS(1618), 1, + ACTIONS(1636), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1620), 1, + ACTIONS(1638), 1, sym__sl5_string_chars, - STATE(779), 1, + STATE(784), 1, aux_sym_slStringLiteral_repeat6, - STATE(698), 2, + STATE(703), 2, sym_shebangComment, sym_lineComment, - STATE(878), 2, + STATE(883), 2, sym_slStringLiteralPart5, sym_interpolationExpr5, - [26463] = 11, + [26828] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46446,23 +46818,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1602), 1, + ACTIONS(1620), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1622), 1, + ACTIONS(1640), 1, sym_escapeSequence6, - ACTIONS(1624), 1, + ACTIONS(1642), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1626), 1, + ACTIONS(1644), 1, sym__sl6_string_chars, - STATE(719), 1, + STATE(724), 1, aux_sym_slStringLiteral_repeat7, - STATE(699), 2, + STATE(704), 2, sym_shebangComment, sym_lineComment, - STATE(827), 2, + STATE(832), 2, sym_slStringLiteralPart6, sym_interpolationExpr6, - [26499] = 11, + [26864] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46471,23 +46843,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1584), 1, + ACTIONS(1602), 1, sym_escapeSequence, - ACTIONS(1586), 1, + ACTIONS(1604), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1606), 1, sym__ml_string_chars, - ACTIONS(1628), 1, + ACTIONS(1646), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(689), 1, + STATE(694), 1, aux_sym_mlStringLiteral_repeat1, - STATE(700), 2, + STATE(705), 2, sym_shebangComment, sym_lineComment, - STATE(836), 2, + STATE(841), 2, sym_mlStringLiteralPart, sym_interpolationExpr, - [26535] = 11, + [26900] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46496,23 +46868,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1590), 1, + ACTIONS(1608), 1, sym_escapeSequence1, - ACTIONS(1592), 1, + ACTIONS(1610), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1594), 1, + ACTIONS(1612), 1, sym__ml1_string_chars, - ACTIONS(1628), 1, + ACTIONS(1646), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - STATE(690), 1, + STATE(695), 1, aux_sym_mlStringLiteral_repeat2, - STATE(701), 2, + STATE(706), 2, sym_shebangComment, sym_lineComment, - STATE(833), 2, + STATE(838), 2, sym_mlStringLiteralPart1, sym_interpolationExpr1, - [26571] = 11, + [26936] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46521,23 +46893,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1546), 1, + ACTIONS(1564), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1630), 1, + ACTIONS(1648), 1, sym_escapeSequence4, - ACTIONS(1632), 1, + ACTIONS(1650), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1634), 1, + ACTIONS(1652), 1, sym__ml4_string_chars, - STATE(730), 1, + STATE(735), 1, aux_sym_mlStringLiteral_repeat5, - STATE(702), 2, + STATE(707), 2, sym_shebangComment, sym_lineComment, - STATE(835), 2, + STATE(840), 2, sym_mlStringLiteralPart4, sym_interpolationExpr4, - [26607] = 11, + [26972] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46546,23 +46918,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1596), 1, + ACTIONS(1614), 1, sym_escapeSequence2, - ACTIONS(1598), 1, + ACTIONS(1616), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1618), 1, sym__ml2_string_chars, - ACTIONS(1628), 1, + ACTIONS(1646), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - STATE(691), 1, + STATE(696), 1, aux_sym_mlStringLiteral_repeat3, - STATE(703), 2, + STATE(708), 2, sym_shebangComment, sym_lineComment, - STATE(844), 2, + STATE(849), 2, sym_mlStringLiteralPart2, sym_interpolationExpr2, - [26643] = 11, + [27008] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46571,23 +46943,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1604), 1, + ACTIONS(1622), 1, sym_escapeSequence3, - ACTIONS(1606), 1, + ACTIONS(1624), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1608), 1, + ACTIONS(1626), 1, sym__ml3_string_chars, - ACTIONS(1628), 1, + ACTIONS(1646), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - STATE(693), 1, + STATE(698), 1, aux_sym_mlStringLiteral_repeat4, - STATE(704), 2, + STATE(709), 2, sym_shebangComment, sym_lineComment, - STATE(841), 2, + STATE(846), 2, sym_mlStringLiteralPart3, sym_interpolationExpr3, - [26679] = 11, + [27044] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46596,23 +46968,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1628), 1, + ACTIONS(1646), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1630), 1, + ACTIONS(1648), 1, sym_escapeSequence4, - ACTIONS(1632), 1, + ACTIONS(1650), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1634), 1, + ACTIONS(1652), 1, sym__ml4_string_chars, - STATE(702), 1, + STATE(707), 1, aux_sym_mlStringLiteral_repeat5, - STATE(705), 2, + STATE(710), 2, sym_shebangComment, sym_lineComment, - STATE(835), 2, + STATE(840), 2, sym_mlStringLiteralPart4, sym_interpolationExpr4, - [26715] = 11, + [27080] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46621,23 +46993,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1546), 1, + ACTIONS(1564), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1636), 1, + ACTIONS(1654), 1, sym_escapeSequence5, - ACTIONS(1638), 1, + ACTIONS(1656), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1640), 1, + ACTIONS(1658), 1, sym__ml5_string_chars, - STATE(729), 1, + STATE(734), 1, aux_sym_mlStringLiteral_repeat6, - STATE(706), 2, + STATE(711), 2, sym_shebangComment, sym_lineComment, - STATE(843), 2, + STATE(848), 2, sym_mlStringLiteralPart5, sym_interpolationExpr5, - [26751] = 11, + [27116] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46646,23 +47018,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1628), 1, + ACTIONS(1646), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1636), 1, + ACTIONS(1654), 1, sym_escapeSequence5, - ACTIONS(1638), 1, + ACTIONS(1656), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1640), 1, + ACTIONS(1658), 1, sym__ml5_string_chars, - STATE(706), 1, + STATE(711), 1, aux_sym_mlStringLiteral_repeat6, - STATE(707), 2, + STATE(712), 2, sym_shebangComment, sym_lineComment, - STATE(843), 2, + STATE(848), 2, sym_mlStringLiteralPart5, sym_interpolationExpr5, - [26787] = 11, + [27152] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46671,23 +47043,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1548), 1, + ACTIONS(1566), 1, sym_escapeSequence6, - ACTIONS(1550), 1, + ACTIONS(1568), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1552), 1, + ACTIONS(1570), 1, sym__ml6_string_chars, - ACTIONS(1628), 1, + ACTIONS(1646), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(683), 1, + STATE(688), 1, aux_sym_mlStringLiteral_repeat7, - STATE(708), 2, + STATE(713), 2, sym_shebangComment, sym_lineComment, - STATE(838), 2, + STATE(843), 2, sym_mlStringLiteralPart6, sym_interpolationExpr6, - [26823] = 11, + [27188] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46696,23 +47068,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1564), 1, + ACTIONS(1582), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1610), 1, + ACTIONS(1628), 1, sym_escapeSequence4, - ACTIONS(1612), 1, + ACTIONS(1630), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1614), 1, + ACTIONS(1632), 1, sym__sl4_string_chars, - STATE(760), 1, + STATE(765), 1, aux_sym_slStringLiteral_repeat5, - STATE(709), 2, + STATE(714), 2, sym_shebangComment, sym_lineComment, - STATE(867), 2, + STATE(872), 2, sym_slStringLiteralPart4, sym_interpolationExpr4, - [26859] = 11, + [27224] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46721,23 +47093,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1564), 1, + ACTIONS(1582), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1616), 1, + ACTIONS(1634), 1, sym_escapeSequence5, - ACTIONS(1618), 1, + ACTIONS(1636), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1620), 1, + ACTIONS(1638), 1, sym__sl5_string_chars, - STATE(759), 1, + STATE(764), 1, aux_sym_slStringLiteral_repeat6, - STATE(710), 2, + STATE(715), 2, sym_shebangComment, sym_lineComment, - STATE(878), 2, + STATE(883), 2, sym_slStringLiteralPart5, sym_interpolationExpr5, - [26895] = 11, + [27260] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46746,23 +47118,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1564), 1, + ACTIONS(1582), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1622), 1, + ACTIONS(1640), 1, sym_escapeSequence6, - ACTIONS(1624), 1, + ACTIONS(1642), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1626), 1, + ACTIONS(1644), 1, sym__sl6_string_chars, - STATE(756), 1, + STATE(761), 1, aux_sym_slStringLiteral_repeat7, - STATE(711), 2, + STATE(716), 2, sym_shebangComment, sym_lineComment, - STATE(827), 2, + STATE(832), 2, sym_slStringLiteralPart6, sym_interpolationExpr6, - [26931] = 11, + [27296] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46771,23 +47143,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1584), 1, + ACTIONS(1602), 1, sym_escapeSequence, - ACTIONS(1586), 1, + ACTIONS(1604), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1606), 1, sym__ml_string_chars, - ACTIONS(1642), 1, + ACTIONS(1660), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(755), 1, + STATE(760), 1, aux_sym_mlStringLiteral_repeat1, - STATE(712), 2, + STATE(717), 2, sym_shebangComment, sym_lineComment, - STATE(836), 2, + STATE(841), 2, sym_mlStringLiteralPart, sym_interpolationExpr, - [26967] = 11, + [27332] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46796,23 +47168,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1590), 1, + ACTIONS(1608), 1, sym_escapeSequence1, - ACTIONS(1592), 1, + ACTIONS(1610), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1594), 1, + ACTIONS(1612), 1, sym__ml1_string_chars, - ACTIONS(1642), 1, + ACTIONS(1660), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - STATE(754), 1, + STATE(759), 1, aux_sym_mlStringLiteral_repeat2, - STATE(713), 2, + STATE(718), 2, sym_shebangComment, sym_lineComment, - STATE(833), 2, + STATE(838), 2, sym_mlStringLiteralPart1, sym_interpolationExpr1, - [27003] = 11, + [27368] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46821,23 +47193,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1596), 1, + ACTIONS(1614), 1, sym_escapeSequence2, - ACTIONS(1598), 1, + ACTIONS(1616), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1618), 1, sym__ml2_string_chars, - ACTIONS(1642), 1, + ACTIONS(1660), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - STATE(752), 1, + STATE(757), 1, aux_sym_mlStringLiteral_repeat3, - STATE(714), 2, + STATE(719), 2, sym_shebangComment, sym_lineComment, - STATE(844), 2, + STATE(849), 2, sym_mlStringLiteralPart2, sym_interpolationExpr2, - [27039] = 11, + [27404] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46846,23 +47218,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1604), 1, + ACTIONS(1622), 1, sym_escapeSequence3, - ACTIONS(1606), 1, + ACTIONS(1624), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1608), 1, + ACTIONS(1626), 1, sym__ml3_string_chars, - ACTIONS(1642), 1, + ACTIONS(1660), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - STATE(751), 1, + STATE(756), 1, aux_sym_mlStringLiteral_repeat4, - STATE(715), 2, + STATE(720), 2, sym_shebangComment, sym_lineComment, - STATE(841), 2, + STATE(846), 2, sym_mlStringLiteralPart3, sym_interpolationExpr3, - [27075] = 11, + [27440] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46871,23 +47243,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1630), 1, + ACTIONS(1648), 1, sym_escapeSequence4, - ACTIONS(1632), 1, + ACTIONS(1650), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1634), 1, + ACTIONS(1652), 1, sym__ml4_string_chars, - ACTIONS(1642), 1, + ACTIONS(1660), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - STATE(750), 1, + STATE(755), 1, aux_sym_mlStringLiteral_repeat5, - STATE(716), 2, + STATE(721), 2, sym_shebangComment, sym_lineComment, - STATE(835), 2, + STATE(840), 2, sym_mlStringLiteralPart4, sym_interpolationExpr4, - [27111] = 11, + [27476] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46896,23 +47268,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, + ACTIONS(1654), 1, sym_escapeSequence5, - ACTIONS(1638), 1, + ACTIONS(1656), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1640), 1, + ACTIONS(1658), 1, sym__ml5_string_chars, - ACTIONS(1642), 1, + ACTIONS(1660), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(749), 1, + STATE(754), 1, aux_sym_mlStringLiteral_repeat6, - STATE(717), 2, + STATE(722), 2, sym_shebangComment, sym_lineComment, - STATE(843), 2, + STATE(848), 2, sym_mlStringLiteralPart5, sym_interpolationExpr5, - [27147] = 11, + [27512] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46921,23 +47293,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1548), 1, + ACTIONS(1566), 1, sym_escapeSequence6, - ACTIONS(1550), 1, + ACTIONS(1568), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1552), 1, + ACTIONS(1570), 1, sym__ml6_string_chars, - ACTIONS(1642), 1, + ACTIONS(1660), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(747), 1, + STATE(752), 1, aux_sym_mlStringLiteral_repeat7, - STATE(718), 2, + STATE(723), 2, sym_shebangComment, sym_lineComment, - STATE(838), 2, + STATE(843), 2, sym_mlStringLiteralPart6, sym_interpolationExpr6, - [27183] = 11, + [27548] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46946,23 +47318,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1622), 1, + ACTIONS(1640), 1, sym_escapeSequence6, - ACTIONS(1624), 1, + ACTIONS(1642), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1626), 1, - sym__sl6_string_chars, ACTIONS(1644), 1, + sym__sl6_string_chars, + ACTIONS(1662), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(735), 1, + STATE(740), 1, aux_sym_slStringLiteral_repeat7, - STATE(719), 2, + STATE(724), 2, sym_shebangComment, sym_lineComment, - STATE(827), 2, + STATE(832), 2, sym_slStringLiteralPart6, sym_interpolationExpr6, - [27219] = 11, + [27584] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46971,23 +47343,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1578), 1, + ACTIONS(1596), 1, sym_escapeSequence, - ACTIONS(1580), 1, + ACTIONS(1598), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1644), 1, + ACTIONS(1662), 1, anon_sym_DQUOTE, - STATE(741), 1, + STATE(746), 1, aux_sym_slStringLiteral_repeat1, - STATE(720), 2, + STATE(725), 2, sym_shebangComment, sym_lineComment, - STATE(871), 2, + STATE(876), 2, sym_slStringLiteralPart, sym_interpolationExpr, - [27255] = 11, + [27620] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -46996,23 +47368,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1548), 1, + ACTIONS(1566), 1, sym_escapeSequence6, - ACTIONS(1550), 1, + ACTIONS(1568), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1552), 1, + ACTIONS(1570), 1, sym__ml6_string_chars, - ACTIONS(1646), 1, + ACTIONS(1664), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(728), 1, + STATE(733), 1, aux_sym_mlStringLiteral_repeat7, - STATE(721), 2, + STATE(726), 2, sym_shebangComment, sym_lineComment, - STATE(838), 2, + STATE(843), 2, sym_mlStringLiteralPart6, sym_interpolationExpr6, - [27291] = 11, + [27656] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47021,23 +47393,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1572), 1, + ACTIONS(1590), 1, sym_escapeSequence1, - ACTIONS(1574), 1, + ACTIONS(1592), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1644), 1, + ACTIONS(1662), 1, anon_sym_DQUOTE_POUND, - STATE(740), 1, + STATE(745), 1, aux_sym_slStringLiteral_repeat2, - STATE(722), 2, + STATE(727), 2, sym_shebangComment, sym_lineComment, - STATE(872), 2, + STATE(877), 2, sym_slStringLiteralPart1, sym_interpolationExpr1, - [27327] = 11, + [27692] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47046,23 +47418,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, + ACTIONS(1654), 1, sym_escapeSequence5, - ACTIONS(1638), 1, + ACTIONS(1656), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1640), 1, + ACTIONS(1658), 1, sym__ml5_string_chars, - ACTIONS(1646), 1, + ACTIONS(1664), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(729), 1, + STATE(734), 1, aux_sym_mlStringLiteral_repeat6, - STATE(723), 2, + STATE(728), 2, sym_shebangComment, sym_lineComment, - STATE(843), 2, + STATE(848), 2, sym_mlStringLiteralPart5, sym_interpolationExpr5, - [27363] = 11, + [27728] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47071,23 +47443,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1630), 1, + ACTIONS(1648), 1, sym_escapeSequence4, - ACTIONS(1632), 1, + ACTIONS(1650), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1634), 1, + ACTIONS(1652), 1, sym__ml4_string_chars, - ACTIONS(1646), 1, + ACTIONS(1664), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - STATE(730), 1, + STATE(735), 1, aux_sym_mlStringLiteral_repeat5, - STATE(724), 2, + STATE(729), 2, sym_shebangComment, sym_lineComment, - STATE(835), 2, + STATE(840), 2, sym_mlStringLiteralPart4, sym_interpolationExpr4, - [27399] = 11, + [27764] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47096,23 +47468,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1604), 1, + ACTIONS(1622), 1, sym_escapeSequence3, - ACTIONS(1606), 1, + ACTIONS(1624), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1608), 1, + ACTIONS(1626), 1, sym__ml3_string_chars, - ACTIONS(1646), 1, + ACTIONS(1664), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - STATE(731), 1, + STATE(736), 1, aux_sym_mlStringLiteral_repeat4, - STATE(725), 2, + STATE(730), 2, sym_shebangComment, sym_lineComment, - STATE(841), 2, + STATE(846), 2, sym_mlStringLiteralPart3, sym_interpolationExpr3, - [27435] = 11, + [27800] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47121,23 +47493,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1596), 1, + ACTIONS(1614), 1, sym_escapeSequence2, - ACTIONS(1598), 1, + ACTIONS(1616), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1618), 1, sym__ml2_string_chars, - ACTIONS(1646), 1, + ACTIONS(1664), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - STATE(732), 1, + STATE(737), 1, aux_sym_mlStringLiteral_repeat3, - STATE(726), 2, + STATE(731), 2, sym_shebangComment, sym_lineComment, - STATE(844), 2, + STATE(849), 2, sym_mlStringLiteralPart2, sym_interpolationExpr2, - [27471] = 11, + [27836] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47146,23 +47518,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1566), 1, + ACTIONS(1584), 1, sym_escapeSequence2, - ACTIONS(1568), 1, + ACTIONS(1586), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1570), 1, + ACTIONS(1588), 1, sym__sl2_string_chars, - ACTIONS(1644), 1, + ACTIONS(1662), 1, anon_sym_DQUOTE_POUND_POUND, - STATE(739), 1, + STATE(744), 1, aux_sym_slStringLiteral_repeat3, - STATE(727), 2, + STATE(732), 2, sym_shebangComment, sym_lineComment, - STATE(870), 2, + STATE(875), 2, sym_slStringLiteralPart2, sym_interpolationExpr2, - [27507] = 10, + [27872] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47171,22 +47543,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1648), 1, + ACTIONS(1666), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1650), 1, + ACTIONS(1668), 1, sym_escapeSequence6, - ACTIONS(1653), 1, + ACTIONS(1671), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1656), 1, + ACTIONS(1674), 1, sym__ml6_string_chars, - STATE(838), 2, + STATE(843), 2, sym_mlStringLiteralPart6, sym_interpolationExpr6, - STATE(728), 3, + STATE(733), 3, sym_shebangComment, sym_lineComment, aux_sym_mlStringLiteral_repeat7, - [27541] = 10, + [27906] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47195,22 +47567,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1659), 1, + ACTIONS(1677), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1661), 1, + ACTIONS(1679), 1, sym_escapeSequence5, - ACTIONS(1664), 1, + ACTIONS(1682), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1667), 1, + ACTIONS(1685), 1, sym__ml5_string_chars, - STATE(843), 2, + STATE(848), 2, sym_mlStringLiteralPart5, sym_interpolationExpr5, - STATE(729), 3, + STATE(734), 3, sym_shebangComment, sym_lineComment, aux_sym_mlStringLiteral_repeat6, - [27575] = 10, + [27940] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47219,22 +47591,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1670), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1672), 1, + ACTIONS(1690), 1, sym_escapeSequence4, - ACTIONS(1675), 1, + ACTIONS(1693), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1678), 1, + ACTIONS(1696), 1, sym__ml4_string_chars, - STATE(835), 2, + STATE(840), 2, sym_mlStringLiteralPart4, sym_interpolationExpr4, - STATE(730), 3, + STATE(735), 3, sym_shebangComment, sym_lineComment, aux_sym_mlStringLiteral_repeat5, - [27609] = 10, + [27974] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47243,22 +47615,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1681), 1, + ACTIONS(1699), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - ACTIONS(1683), 1, + ACTIONS(1701), 1, sym_escapeSequence3, - ACTIONS(1686), 1, + ACTIONS(1704), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1689), 1, + ACTIONS(1707), 1, sym__ml3_string_chars, - STATE(841), 2, + STATE(846), 2, sym_mlStringLiteralPart3, sym_interpolationExpr3, - STATE(731), 3, + STATE(736), 3, sym_shebangComment, sym_lineComment, aux_sym_mlStringLiteral_repeat4, - [27643] = 10, + [28008] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47267,22 +47639,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1692), 1, + ACTIONS(1710), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - ACTIONS(1694), 1, + ACTIONS(1712), 1, sym_escapeSequence2, - ACTIONS(1697), 1, + ACTIONS(1715), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1700), 1, + ACTIONS(1718), 1, sym__ml2_string_chars, - STATE(844), 2, + STATE(849), 2, sym_mlStringLiteralPart2, sym_interpolationExpr2, - STATE(732), 3, + STATE(737), 3, sym_shebangComment, sym_lineComment, aux_sym_mlStringLiteral_repeat3, - [27677] = 10, + [28042] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47291,22 +47663,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1703), 1, + ACTIONS(1721), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - ACTIONS(1705), 1, + ACTIONS(1723), 1, sym_escapeSequence1, - ACTIONS(1708), 1, + ACTIONS(1726), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1711), 1, + ACTIONS(1729), 1, sym__ml1_string_chars, - STATE(833), 2, + STATE(838), 2, sym_mlStringLiteralPart1, sym_interpolationExpr1, - STATE(733), 3, + STATE(738), 3, sym_shebangComment, sym_lineComment, aux_sym_mlStringLiteral_repeat2, - [27711] = 10, + [28076] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47315,22 +47687,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1714), 1, + ACTIONS(1732), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(1716), 1, + ACTIONS(1734), 1, sym_escapeSequence, - ACTIONS(1719), 1, + ACTIONS(1737), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1740), 1, sym__ml_string_chars, - STATE(836), 2, + STATE(841), 2, sym_mlStringLiteralPart, sym_interpolationExpr, - STATE(734), 3, + STATE(739), 3, sym_shebangComment, sym_lineComment, aux_sym_mlStringLiteral_repeat1, - [27745] = 10, + [28110] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47339,22 +47711,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1725), 1, + ACTIONS(1743), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1727), 1, + ACTIONS(1745), 1, sym_escapeSequence6, - ACTIONS(1730), 1, + ACTIONS(1748), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1733), 1, + ACTIONS(1751), 1, sym__sl6_string_chars, - STATE(827), 2, + STATE(832), 2, sym_slStringLiteralPart6, sym_interpolationExpr6, - STATE(735), 3, + STATE(740), 3, sym_shebangComment, sym_lineComment, aux_sym_slStringLiteral_repeat7, - [27779] = 10, + [28144] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47363,22 +47735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1736), 1, + ACTIONS(1754), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1738), 1, + ACTIONS(1756), 1, sym_escapeSequence5, - ACTIONS(1741), 1, + ACTIONS(1759), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1762), 1, sym__sl5_string_chars, - STATE(878), 2, + STATE(883), 2, sym_slStringLiteralPart5, sym_interpolationExpr5, - STATE(736), 3, + STATE(741), 3, sym_shebangComment, sym_lineComment, aux_sym_slStringLiteral_repeat6, - [27813] = 10, + [28178] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47387,22 +47759,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1747), 1, + ACTIONS(1765), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1749), 1, + ACTIONS(1767), 1, sym_escapeSequence4, - ACTIONS(1752), 1, + ACTIONS(1770), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1755), 1, + ACTIONS(1773), 1, sym__sl4_string_chars, - STATE(867), 2, + STATE(872), 2, sym_slStringLiteralPart4, sym_interpolationExpr4, - STATE(737), 3, + STATE(742), 3, sym_shebangComment, sym_lineComment, aux_sym_slStringLiteral_repeat5, - [27847] = 10, + [28212] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47411,22 +47783,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1758), 1, + ACTIONS(1776), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - ACTIONS(1760), 1, + ACTIONS(1778), 1, sym_escapeSequence3, - ACTIONS(1763), 1, + ACTIONS(1781), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1766), 1, + ACTIONS(1784), 1, sym__sl3_string_chars, - STATE(877), 2, + STATE(882), 2, sym_slStringLiteralPart3, sym_interpolationExpr3, - STATE(738), 3, + STATE(743), 3, sym_shebangComment, sym_lineComment, aux_sym_slStringLiteral_repeat4, - [27881] = 10, + [28246] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47435,22 +47807,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1769), 1, + ACTIONS(1787), 1, anon_sym_DQUOTE_POUND_POUND, - ACTIONS(1771), 1, + ACTIONS(1789), 1, sym_escapeSequence2, - ACTIONS(1774), 1, + ACTIONS(1792), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1795), 1, sym__sl2_string_chars, - STATE(870), 2, + STATE(875), 2, sym_slStringLiteralPart2, sym_interpolationExpr2, - STATE(739), 3, + STATE(744), 3, sym_shebangComment, sym_lineComment, aux_sym_slStringLiteral_repeat3, - [27915] = 10, + [28280] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47459,22 +47831,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1780), 1, + ACTIONS(1798), 1, anon_sym_DQUOTE_POUND, - ACTIONS(1782), 1, + ACTIONS(1800), 1, sym_escapeSequence1, - ACTIONS(1785), 1, + ACTIONS(1803), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1806), 1, sym__sl1_string_chars, - STATE(872), 2, + STATE(877), 2, sym_slStringLiteralPart1, sym_interpolationExpr1, - STATE(740), 3, + STATE(745), 3, sym_shebangComment, sym_lineComment, aux_sym_slStringLiteral_repeat2, - [27949] = 10, + [28314] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47483,22 +47855,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1791), 1, + ACTIONS(1809), 1, anon_sym_DQUOTE, - ACTIONS(1793), 1, + ACTIONS(1811), 1, sym_escapeSequence, - ACTIONS(1796), 1, + ACTIONS(1814), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1799), 1, + ACTIONS(1817), 1, sym__sl_string_chars, - STATE(871), 2, + STATE(876), 2, sym_slStringLiteralPart, sym_interpolationExpr, - STATE(741), 3, + STATE(746), 3, sym_shebangComment, sym_lineComment, aux_sym_slStringLiteral_repeat1, - [27983] = 11, + [28348] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47507,23 +47879,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1590), 1, + ACTIONS(1608), 1, sym_escapeSequence1, - ACTIONS(1592), 1, + ACTIONS(1610), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1594), 1, + ACTIONS(1612), 1, sym__ml1_string_chars, - ACTIONS(1646), 1, + ACTIONS(1664), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - STATE(733), 1, + STATE(738), 1, aux_sym_mlStringLiteral_repeat2, - STATE(742), 2, + STATE(747), 2, sym_shebangComment, sym_lineComment, - STATE(833), 2, + STATE(838), 2, sym_mlStringLiteralPart1, sym_interpolationExpr1, - [28019] = 11, + [28384] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47532,23 +47904,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1556), 1, + ACTIONS(1574), 1, sym_escapeSequence3, - ACTIONS(1558), 1, + ACTIONS(1576), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1560), 1, + ACTIONS(1578), 1, sym__sl3_string_chars, - ACTIONS(1644), 1, + ACTIONS(1662), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - STATE(738), 1, + STATE(743), 1, aux_sym_slStringLiteral_repeat4, - STATE(743), 2, + STATE(748), 2, sym_shebangComment, sym_lineComment, - STATE(877), 2, + STATE(882), 2, sym_slStringLiteralPart3, sym_interpolationExpr3, - [28055] = 11, + [28420] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47557,23 +47929,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1584), 1, + ACTIONS(1602), 1, sym_escapeSequence, - ACTIONS(1586), 1, + ACTIONS(1604), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1606), 1, sym__ml_string_chars, - ACTIONS(1646), 1, + ACTIONS(1664), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(734), 1, + STATE(739), 1, aux_sym_mlStringLiteral_repeat1, - STATE(744), 2, + STATE(749), 2, sym_shebangComment, sym_lineComment, - STATE(836), 2, + STATE(841), 2, sym_mlStringLiteralPart, sym_interpolationExpr, - [28091] = 11, + [28456] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47582,23 +47954,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1610), 1, + ACTIONS(1628), 1, sym_escapeSequence4, - ACTIONS(1612), 1, + ACTIONS(1630), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1614), 1, + ACTIONS(1632), 1, sym__sl4_string_chars, - ACTIONS(1644), 1, + ACTIONS(1662), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - STATE(737), 1, + STATE(742), 1, aux_sym_slStringLiteral_repeat5, - STATE(745), 2, + STATE(750), 2, sym_shebangComment, sym_lineComment, - STATE(867), 2, + STATE(872), 2, sym_slStringLiteralPart4, sym_interpolationExpr4, - [28127] = 11, + [28492] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47607,23 +47979,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1554), 1, + ACTIONS(1572), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1622), 1, + ACTIONS(1640), 1, sym_escapeSequence6, - ACTIONS(1624), 1, + ACTIONS(1642), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1626), 1, + ACTIONS(1644), 1, sym__sl6_string_chars, - STATE(735), 1, + STATE(740), 1, aux_sym_slStringLiteral_repeat7, - STATE(746), 2, + STATE(751), 2, sym_shebangComment, sym_lineComment, - STATE(827), 2, + STATE(832), 2, sym_slStringLiteralPart6, sym_interpolationExpr6, - [28163] = 11, + [28528] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47632,23 +48004,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1548), 1, + ACTIONS(1566), 1, sym_escapeSequence6, - ACTIONS(1550), 1, + ACTIONS(1568), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1552), 1, + ACTIONS(1570), 1, sym__ml6_string_chars, - ACTIONS(1802), 1, + ACTIONS(1820), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(728), 1, + STATE(733), 1, aux_sym_mlStringLiteral_repeat7, - STATE(747), 2, + STATE(752), 2, sym_shebangComment, sym_lineComment, - STATE(838), 2, + STATE(843), 2, sym_mlStringLiteralPart6, sym_interpolationExpr6, - [28199] = 11, + [28564] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47657,23 +48029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1554), 1, + ACTIONS(1572), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - ACTIONS(1616), 1, + ACTIONS(1634), 1, sym_escapeSequence5, - ACTIONS(1618), 1, + ACTIONS(1636), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1620), 1, + ACTIONS(1638), 1, sym__sl5_string_chars, - STATE(736), 1, + STATE(741), 1, aux_sym_slStringLiteral_repeat6, - STATE(748), 2, + STATE(753), 2, sym_shebangComment, sym_lineComment, - STATE(878), 2, + STATE(883), 2, sym_slStringLiteralPart5, sym_interpolationExpr5, - [28235] = 11, + [28600] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47682,23 +48054,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, + ACTIONS(1654), 1, sym_escapeSequence5, - ACTIONS(1638), 1, + ACTIONS(1656), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1640), 1, + ACTIONS(1658), 1, sym__ml5_string_chars, - ACTIONS(1802), 1, + ACTIONS(1820), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(729), 1, + STATE(734), 1, aux_sym_mlStringLiteral_repeat6, - STATE(749), 2, + STATE(754), 2, sym_shebangComment, sym_lineComment, - STATE(843), 2, + STATE(848), 2, sym_mlStringLiteralPart5, sym_interpolationExpr5, - [28271] = 11, + [28636] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47707,23 +48079,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1630), 1, + ACTIONS(1648), 1, sym_escapeSequence4, - ACTIONS(1632), 1, + ACTIONS(1650), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1634), 1, + ACTIONS(1652), 1, sym__ml4_string_chars, - ACTIONS(1802), 1, + ACTIONS(1820), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - STATE(730), 1, + STATE(735), 1, aux_sym_mlStringLiteral_repeat5, - STATE(750), 2, + STATE(755), 2, sym_shebangComment, sym_lineComment, - STATE(835), 2, + STATE(840), 2, sym_mlStringLiteralPart4, sym_interpolationExpr4, - [28307] = 11, + [28672] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47732,23 +48104,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1604), 1, + ACTIONS(1622), 1, sym_escapeSequence3, - ACTIONS(1606), 1, + ACTIONS(1624), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1608), 1, + ACTIONS(1626), 1, sym__ml3_string_chars, - ACTIONS(1802), 1, + ACTIONS(1820), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - STATE(731), 1, + STATE(736), 1, aux_sym_mlStringLiteral_repeat4, - STATE(751), 2, + STATE(756), 2, sym_shebangComment, sym_lineComment, - STATE(841), 2, + STATE(846), 2, sym_mlStringLiteralPart3, sym_interpolationExpr3, - [28343] = 11, + [28708] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47757,23 +48129,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1596), 1, + ACTIONS(1614), 1, sym_escapeSequence2, - ACTIONS(1598), 1, + ACTIONS(1616), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1618), 1, sym__ml2_string_chars, - ACTIONS(1802), 1, + ACTIONS(1820), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - STATE(732), 1, + STATE(737), 1, aux_sym_mlStringLiteral_repeat3, - STATE(752), 2, + STATE(757), 2, sym_shebangComment, sym_lineComment, - STATE(844), 2, + STATE(849), 2, sym_mlStringLiteralPart2, sym_interpolationExpr2, - [28379] = 11, + [28744] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47782,23 +48154,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1554), 1, + ACTIONS(1572), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - ACTIONS(1610), 1, + ACTIONS(1628), 1, sym_escapeSequence4, - ACTIONS(1612), 1, + ACTIONS(1630), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1614), 1, + ACTIONS(1632), 1, sym__sl4_string_chars, - STATE(737), 1, + STATE(742), 1, aux_sym_slStringLiteral_repeat5, - STATE(753), 2, + STATE(758), 2, sym_shebangComment, sym_lineComment, - STATE(867), 2, + STATE(872), 2, sym_slStringLiteralPart4, sym_interpolationExpr4, - [28415] = 11, + [28780] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47807,23 +48179,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1590), 1, + ACTIONS(1608), 1, sym_escapeSequence1, - ACTIONS(1592), 1, + ACTIONS(1610), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1594), 1, + ACTIONS(1612), 1, sym__ml1_string_chars, - ACTIONS(1802), 1, + ACTIONS(1820), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - STATE(733), 1, + STATE(738), 1, aux_sym_mlStringLiteral_repeat2, - STATE(754), 2, + STATE(759), 2, sym_shebangComment, sym_lineComment, - STATE(833), 2, + STATE(838), 2, sym_mlStringLiteralPart1, sym_interpolationExpr1, - [28451] = 11, + [28816] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47832,23 +48204,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1584), 1, + ACTIONS(1602), 1, sym_escapeSequence, - ACTIONS(1586), 1, + ACTIONS(1604), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1606), 1, sym__ml_string_chars, - ACTIONS(1802), 1, + ACTIONS(1820), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(734), 1, + STATE(739), 1, aux_sym_mlStringLiteral_repeat1, - STATE(755), 2, + STATE(760), 2, sym_shebangComment, sym_lineComment, - STATE(836), 2, + STATE(841), 2, sym_mlStringLiteralPart, sym_interpolationExpr, - [28487] = 11, + [28852] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47857,23 +48229,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1622), 1, + ACTIONS(1640), 1, sym_escapeSequence6, - ACTIONS(1624), 1, + ACTIONS(1642), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1626), 1, + ACTIONS(1644), 1, sym__sl6_string_chars, - ACTIONS(1804), 1, + ACTIONS(1822), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(735), 1, + STATE(740), 1, aux_sym_slStringLiteral_repeat7, - STATE(756), 2, + STATE(761), 2, sym_shebangComment, sym_lineComment, - STATE(827), 2, + STATE(832), 2, sym_slStringLiteralPart6, sym_interpolationExpr6, - [28523] = 11, + [28888] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47882,23 +48254,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1556), 1, + ACTIONS(1574), 1, sym_escapeSequence3, - ACTIONS(1558), 1, + ACTIONS(1576), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1560), 1, + ACTIONS(1578), 1, sym__sl3_string_chars, - ACTIONS(1564), 1, + ACTIONS(1582), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - STATE(761), 1, + STATE(766), 1, aux_sym_slStringLiteral_repeat4, - STATE(757), 2, + STATE(762), 2, sym_shebangComment, sym_lineComment, - STATE(877), 2, + STATE(882), 2, sym_slStringLiteralPart3, sym_interpolationExpr3, - [28559] = 11, + [28924] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47907,23 +48279,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1554), 1, + ACTIONS(1572), 1, anon_sym_DQUOTE_POUND_POUND, - ACTIONS(1566), 1, + ACTIONS(1584), 1, sym_escapeSequence2, - ACTIONS(1568), 1, + ACTIONS(1586), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1570), 1, + ACTIONS(1588), 1, sym__sl2_string_chars, - STATE(739), 1, + STATE(744), 1, aux_sym_slStringLiteral_repeat3, - STATE(758), 2, + STATE(763), 2, sym_shebangComment, sym_lineComment, - STATE(870), 2, + STATE(875), 2, sym_slStringLiteralPart2, sym_interpolationExpr2, - [28595] = 11, + [28960] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47932,23 +48304,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1616), 1, + ACTIONS(1634), 1, sym_escapeSequence5, - ACTIONS(1618), 1, + ACTIONS(1636), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1620), 1, + ACTIONS(1638), 1, sym__sl5_string_chars, - ACTIONS(1804), 1, + ACTIONS(1822), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(736), 1, + STATE(741), 1, aux_sym_slStringLiteral_repeat6, - STATE(759), 2, + STATE(764), 2, sym_shebangComment, sym_lineComment, - STATE(878), 2, + STATE(883), 2, sym_slStringLiteralPart5, sym_interpolationExpr5, - [28631] = 11, + [28996] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47957,23 +48329,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1610), 1, + ACTIONS(1628), 1, sym_escapeSequence4, - ACTIONS(1612), 1, + ACTIONS(1630), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1614), 1, + ACTIONS(1632), 1, sym__sl4_string_chars, - ACTIONS(1804), 1, + ACTIONS(1822), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - STATE(737), 1, + STATE(742), 1, aux_sym_slStringLiteral_repeat5, - STATE(760), 2, + STATE(765), 2, sym_shebangComment, sym_lineComment, - STATE(867), 2, + STATE(872), 2, sym_slStringLiteralPart4, sym_interpolationExpr4, - [28667] = 11, + [29032] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -47982,23 +48354,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1556), 1, + ACTIONS(1574), 1, sym_escapeSequence3, - ACTIONS(1558), 1, + ACTIONS(1576), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1560), 1, + ACTIONS(1578), 1, sym__sl3_string_chars, - ACTIONS(1804), 1, + ACTIONS(1822), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - STATE(738), 1, + STATE(743), 1, aux_sym_slStringLiteral_repeat4, - STATE(761), 2, + STATE(766), 2, sym_shebangComment, sym_lineComment, - STATE(877), 2, + STATE(882), 2, sym_slStringLiteralPart3, sym_interpolationExpr3, - [28703] = 11, + [29068] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48007,23 +48379,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1554), 1, - anon_sym_DQUOTE_POUND, ACTIONS(1572), 1, + anon_sym_DQUOTE_POUND, + ACTIONS(1590), 1, sym_escapeSequence1, - ACTIONS(1574), 1, + ACTIONS(1592), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - STATE(740), 1, + STATE(745), 1, aux_sym_slStringLiteral_repeat2, - STATE(762), 2, + STATE(767), 2, sym_shebangComment, sym_lineComment, - STATE(872), 2, + STATE(877), 2, sym_slStringLiteralPart1, sym_interpolationExpr1, - [28739] = 11, + [29104] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48032,23 +48404,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1554), 1, + ACTIONS(1572), 1, anon_sym_DQUOTE, - ACTIONS(1578), 1, + ACTIONS(1596), 1, sym_escapeSequence, - ACTIONS(1580), 1, + ACTIONS(1598), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - STATE(741), 1, + STATE(746), 1, aux_sym_slStringLiteral_repeat1, - STATE(763), 2, + STATE(768), 2, sym_shebangComment, sym_lineComment, - STATE(871), 2, + STATE(876), 2, sym_slStringLiteralPart, sym_interpolationExpr, - [28775] = 11, + [29140] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48057,23 +48429,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1566), 1, + ACTIONS(1584), 1, sym_escapeSequence2, - ACTIONS(1568), 1, + ACTIONS(1586), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1570), 1, + ACTIONS(1588), 1, sym__sl2_string_chars, - ACTIONS(1804), 1, + ACTIONS(1822), 1, anon_sym_DQUOTE_POUND_POUND, - STATE(739), 1, + STATE(744), 1, aux_sym_slStringLiteral_repeat3, - STATE(764), 2, + STATE(769), 2, sym_shebangComment, sym_lineComment, - STATE(870), 2, + STATE(875), 2, sym_slStringLiteralPart2, sym_interpolationExpr2, - [28811] = 11, + [29176] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48082,23 +48454,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1578), 1, + ACTIONS(1596), 1, sym_escapeSequence, - ACTIONS(1580), 1, + ACTIONS(1598), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1806), 1, + ACTIONS(1824), 1, anon_sym_DQUOTE, - STATE(763), 1, + STATE(768), 1, aux_sym_slStringLiteral_repeat1, - STATE(765), 2, + STATE(770), 2, sym_shebangComment, sym_lineComment, - STATE(871), 2, + STATE(876), 2, sym_slStringLiteralPart, sym_interpolationExpr, - [28847] = 11, + [29212] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48107,23 +48479,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1572), 1, + ACTIONS(1590), 1, sym_escapeSequence1, - ACTIONS(1574), 1, + ACTIONS(1592), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1806), 1, + ACTIONS(1824), 1, anon_sym_DQUOTE_POUND, - STATE(762), 1, + STATE(767), 1, aux_sym_slStringLiteral_repeat2, - STATE(766), 2, + STATE(771), 2, sym_shebangComment, sym_lineComment, - STATE(872), 2, + STATE(877), 2, sym_slStringLiteralPart1, sym_interpolationExpr1, - [28883] = 11, + [29248] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48132,23 +48504,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1566), 1, + ACTIONS(1584), 1, sym_escapeSequence2, - ACTIONS(1568), 1, + ACTIONS(1586), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1570), 1, + ACTIONS(1588), 1, sym__sl2_string_chars, - ACTIONS(1806), 1, + ACTIONS(1824), 1, anon_sym_DQUOTE_POUND_POUND, - STATE(758), 1, + STATE(763), 1, aux_sym_slStringLiteral_repeat3, - STATE(767), 2, + STATE(772), 2, sym_shebangComment, sym_lineComment, - STATE(870), 2, + STATE(875), 2, sym_slStringLiteralPart2, sym_interpolationExpr2, - [28919] = 11, + [29284] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48157,23 +48529,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1556), 1, + ACTIONS(1574), 1, sym_escapeSequence3, - ACTIONS(1558), 1, + ACTIONS(1576), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1560), 1, + ACTIONS(1578), 1, sym__sl3_string_chars, - ACTIONS(1806), 1, + ACTIONS(1824), 1, anon_sym_DQUOTE_POUND_POUND_POUND, - STATE(684), 1, + STATE(689), 1, aux_sym_slStringLiteral_repeat4, - STATE(768), 2, + STATE(773), 2, sym_shebangComment, sym_lineComment, - STATE(877), 2, + STATE(882), 2, sym_slStringLiteralPart3, sym_interpolationExpr3, - [28955] = 11, + [29320] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48182,23 +48554,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1610), 1, + ACTIONS(1628), 1, sym_escapeSequence4, - ACTIONS(1612), 1, + ACTIONS(1630), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1614), 1, + ACTIONS(1632), 1, sym__sl4_string_chars, - ACTIONS(1806), 1, + ACTIONS(1824), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, - STATE(753), 1, + STATE(758), 1, aux_sym_slStringLiteral_repeat5, - STATE(769), 2, + STATE(774), 2, sym_shebangComment, sym_lineComment, - STATE(867), 2, + STATE(872), 2, sym_slStringLiteralPart4, sym_interpolationExpr4, - [28991] = 11, + [29356] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48207,23 +48579,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1616), 1, + ACTIONS(1634), 1, sym_escapeSequence5, - ACTIONS(1618), 1, + ACTIONS(1636), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1620), 1, + ACTIONS(1638), 1, sym__sl5_string_chars, - ACTIONS(1806), 1, + ACTIONS(1824), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(748), 1, + STATE(753), 1, aux_sym_slStringLiteral_repeat6, - STATE(770), 2, + STATE(775), 2, sym_shebangComment, sym_lineComment, - STATE(878), 2, + STATE(883), 2, sym_slStringLiteralPart5, sym_interpolationExpr5, - [29027] = 11, + [29392] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48232,23 +48604,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1622), 1, + ACTIONS(1640), 1, sym_escapeSequence6, - ACTIONS(1624), 1, + ACTIONS(1642), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1626), 1, + ACTIONS(1644), 1, sym__sl6_string_chars, - ACTIONS(1806), 1, + ACTIONS(1824), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(746), 1, + STATE(751), 1, aux_sym_slStringLiteral_repeat7, - STATE(771), 2, + STATE(776), 2, sym_shebangComment, sym_lineComment, - STATE(827), 2, + STATE(832), 2, sym_slStringLiteralPart6, sym_interpolationExpr6, - [29063] = 11, + [29428] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48257,23 +48629,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1584), 1, + ACTIONS(1602), 1, sym_escapeSequence, - ACTIONS(1586), 1, + ACTIONS(1604), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1606), 1, sym__ml_string_chars, - ACTIONS(1808), 1, + ACTIONS(1826), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(744), 1, + STATE(749), 1, aux_sym_mlStringLiteral_repeat1, - STATE(772), 2, + STATE(777), 2, sym_shebangComment, sym_lineComment, - STATE(836), 2, + STATE(841), 2, sym_mlStringLiteralPart, sym_interpolationExpr, - [29099] = 11, + [29464] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48282,23 +48654,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1590), 1, + ACTIONS(1608), 1, sym_escapeSequence1, - ACTIONS(1592), 1, + ACTIONS(1610), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1594), 1, + ACTIONS(1612), 1, sym__ml1_string_chars, - ACTIONS(1808), 1, + ACTIONS(1826), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, - STATE(742), 1, + STATE(747), 1, aux_sym_mlStringLiteral_repeat2, - STATE(773), 2, + STATE(778), 2, sym_shebangComment, sym_lineComment, - STATE(833), 2, + STATE(838), 2, sym_mlStringLiteralPart1, sym_interpolationExpr1, - [29135] = 11, + [29500] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48307,23 +48679,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1596), 1, + ACTIONS(1614), 1, sym_escapeSequence2, - ACTIONS(1598), 1, + ACTIONS(1616), 1, anon_sym_BSLASH_POUND_POUND_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1618), 1, sym__ml2_string_chars, - ACTIONS(1808), 1, + ACTIONS(1826), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, - STATE(726), 1, + STATE(731), 1, aux_sym_mlStringLiteral_repeat3, - STATE(774), 2, + STATE(779), 2, sym_shebangComment, sym_lineComment, - STATE(844), 2, + STATE(849), 2, sym_mlStringLiteralPart2, sym_interpolationExpr2, - [29171] = 11, + [29536] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48332,23 +48704,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1604), 1, + ACTIONS(1622), 1, sym_escapeSequence3, - ACTIONS(1606), 1, + ACTIONS(1624), 1, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - ACTIONS(1608), 1, + ACTIONS(1626), 1, sym__ml3_string_chars, - ACTIONS(1808), 1, + ACTIONS(1826), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, - STATE(725), 1, + STATE(730), 1, aux_sym_mlStringLiteral_repeat4, - STATE(775), 2, + STATE(780), 2, sym_shebangComment, sym_lineComment, - STATE(841), 2, + STATE(846), 2, sym_mlStringLiteralPart3, sym_interpolationExpr3, - [29207] = 11, + [29572] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48357,23 +48729,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1630), 1, + ACTIONS(1648), 1, sym_escapeSequence4, - ACTIONS(1632), 1, + ACTIONS(1650), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1634), 1, + ACTIONS(1652), 1, sym__ml4_string_chars, - ACTIONS(1808), 1, + ACTIONS(1826), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, - STATE(724), 1, + STATE(729), 1, aux_sym_mlStringLiteral_repeat5, - STATE(776), 2, + STATE(781), 2, sym_shebangComment, sym_lineComment, - STATE(835), 2, + STATE(840), 2, sym_mlStringLiteralPart4, sym_interpolationExpr4, - [29243] = 11, + [29608] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48382,23 +48754,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1636), 1, + ACTIONS(1654), 1, sym_escapeSequence5, - ACTIONS(1638), 1, + ACTIONS(1656), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1640), 1, + ACTIONS(1658), 1, sym__ml5_string_chars, - ACTIONS(1808), 1, + ACTIONS(1826), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(723), 1, + STATE(728), 1, aux_sym_mlStringLiteral_repeat6, - STATE(777), 2, + STATE(782), 2, sym_shebangComment, sym_lineComment, - STATE(843), 2, + STATE(848), 2, sym_mlStringLiteralPart5, sym_interpolationExpr5, - [29279] = 11, + [29644] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48407,23 +48779,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1548), 1, + ACTIONS(1566), 1, sym_escapeSequence6, - ACTIONS(1550), 1, + ACTIONS(1568), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1552), 1, + ACTIONS(1570), 1, sym__ml6_string_chars, - ACTIONS(1808), 1, + ACTIONS(1826), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, - STATE(721), 1, + STATE(726), 1, aux_sym_mlStringLiteral_repeat7, - STATE(778), 2, + STATE(783), 2, sym_shebangComment, sym_lineComment, - STATE(838), 2, + STATE(843), 2, sym_mlStringLiteralPart6, sym_interpolationExpr6, - [29315] = 11, + [29680] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48432,23 +48804,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1616), 1, + ACTIONS(1634), 1, sym_escapeSequence5, - ACTIONS(1618), 1, + ACTIONS(1636), 1, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - ACTIONS(1620), 1, + ACTIONS(1638), 1, sym__sl5_string_chars, - ACTIONS(1644), 1, + ACTIONS(1662), 1, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, - STATE(736), 1, + STATE(741), 1, aux_sym_slStringLiteral_repeat6, - STATE(779), 2, + STATE(784), 2, sym_shebangComment, sym_lineComment, - STATE(878), 2, + STATE(883), 2, sym_slStringLiteralPart5, sym_interpolationExpr5, - [29351] = 11, + [29716] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48457,23 +48829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1578), 1, + ACTIONS(1596), 1, sym_escapeSequence, - ACTIONS(1580), 1, + ACTIONS(1598), 1, anon_sym_BSLASH_LPAREN, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1804), 1, + ACTIONS(1822), 1, anon_sym_DQUOTE, - STATE(741), 1, + STATE(746), 1, aux_sym_slStringLiteral_repeat1, - STATE(780), 2, + STATE(785), 2, sym_shebangComment, sym_lineComment, - STATE(871), 2, + STATE(876), 2, sym_slStringLiteralPart, sym_interpolationExpr, - [29387] = 11, + [29752] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48482,23 +48854,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1572), 1, + ACTIONS(1590), 1, sym_escapeSequence1, - ACTIONS(1574), 1, + ACTIONS(1592), 1, anon_sym_BSLASH_POUND_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1804), 1, + ACTIONS(1822), 1, anon_sym_DQUOTE_POUND, - STATE(740), 1, + STATE(745), 1, aux_sym_slStringLiteral_repeat2, - STATE(781), 2, + STATE(786), 2, sym_shebangComment, sym_lineComment, - STATE(872), 2, + STATE(877), 2, sym_slStringLiteralPart1, sym_interpolationExpr1, - [29423] = 6, + [29788] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48507,17 +48879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(782), 2, + STATE(787), 2, sym_shebangComment, sym_lineComment, - ACTIONS(294), 6, + ACTIONS(285), 6, anon_sym_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_PIPE, - [29448] = 11, + [29813] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48526,22 +48898,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1812), 1, + ACTIONS(1830), 1, anon_sym_RPAREN, - STATE(899), 1, + STATE(904), 1, aux_sym_functionLiteralType_repeat1, - STATE(783), 2, + STATE(788), 2, sym_shebangComment, sym_lineComment, - [29483] = 11, + [29848] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48550,22 +48922,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(1362), 1, anon_sym_COLON, - ACTIONS(1814), 1, + ACTIONS(1832), 1, anon_sym_EQ, - STATE(548), 1, + STATE(588), 1, sym_typeAnnotation, - STATE(601), 1, + STATE(602), 1, aux_sym_classProperty_repeat1, - STATE(644), 1, + STATE(654), 1, sym_objectBody, - STATE(784), 2, + STATE(789), 2, sym_shebangComment, sym_lineComment, - [29518] = 11, + [29883] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48574,22 +48946,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(283), 1, + ACTIONS(296), 1, anon_sym_COLON, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1816), 1, + ACTIONS(1834), 1, anon_sym_EQ, - STATE(245), 1, + STATE(246), 1, aux_sym_classProperty_repeat1, - STATE(250), 1, + STATE(251), 1, sym_objectBody, - STATE(967), 1, + STATE(972), 1, sym_typeAnnotation, - STATE(785), 2, + STATE(790), 2, sym_shebangComment, sym_lineComment, - [29553] = 11, + [29918] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48598,22 +48970,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, - ACTIONS(1292), 1, + ACTIONS(1330), 1, anon_sym_EQ, - ACTIONS(1332), 1, + ACTIONS(1362), 1, anon_sym_COLON, - STATE(574), 1, + STATE(563), 1, sym_typeAnnotation, STATE(608), 1, aux_sym_classProperty_repeat1, - STATE(644), 1, + STATE(654), 1, sym_objectBody, - STATE(786), 2, + STATE(791), 2, sym_shebangComment, sym_lineComment, - [29588] = 11, + [29953] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48622,22 +48994,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1818), 1, + ACTIONS(1836), 1, anon_sym_GT, - STATE(889), 1, + STATE(894), 1, aux_sym_functionLiteralType_repeat1, - STATE(787), 2, + STATE(792), 2, sym_shebangComment, sym_lineComment, - [29623] = 11, + [29988] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48646,22 +49018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1820), 1, + ACTIONS(1838), 1, anon_sym_RPAREN, - STATE(906), 1, + STATE(911), 1, aux_sym_functionLiteralType_repeat1, - STATE(788), 2, + STATE(793), 2, sym_shebangComment, sym_lineComment, - [29658] = 11, + [30023] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48670,22 +49042,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1822), 1, + ACTIONS(1840), 1, anon_sym_RPAREN, - STATE(911), 1, + STATE(916), 1, aux_sym_functionLiteralType_repeat1, - STATE(789), 2, + STATE(794), 2, sym_shebangComment, sym_lineComment, - [29693] = 11, + [30058] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48694,22 +49066,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, - ACTIONS(1326), 1, + ACTIONS(1324), 1, anon_sym_EQ, - ACTIONS(1332), 1, + ACTIONS(1362), 1, anon_sym_COLON, - STATE(560), 1, + STATE(552), 1, sym_typeAnnotation, - STATE(603), 1, + STATE(619), 1, aux_sym_classProperty_repeat1, - STATE(644), 1, + STATE(654), 1, sym_objectBody, - STATE(790), 2, + STATE(795), 2, sym_shebangComment, sym_lineComment, - [29728] = 9, + [30093] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48718,20 +49090,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - STATE(791), 2, + STATE(796), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1824), 3, + ACTIONS(1842), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT, - [29759] = 11, + [30124] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48740,22 +49112,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1290), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1322), 1, anon_sym_EQ, - ACTIONS(1332), 1, + ACTIONS(1362), 1, anon_sym_COLON, - STATE(588), 1, + STATE(571), 1, sym_typeAnnotation, - STATE(604), 1, + STATE(607), 1, aux_sym_classProperty_repeat1, - STATE(644), 1, + STATE(654), 1, sym_objectBody, - STATE(792), 2, + STATE(797), 2, sym_shebangComment, sym_lineComment, - [29794] = 11, + [30159] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48764,22 +49136,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1826), 1, + ACTIONS(1844), 1, anon_sym_RPAREN, - STATE(901), 1, + STATE(906), 1, aux_sym_functionLiteralType_repeat1, - STATE(793), 2, + STATE(798), 2, sym_shebangComment, sym_lineComment, - [29829] = 11, + [30194] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48788,22 +49160,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_COMMA, ACTIONS(1828), 1, + anon_sym_COMMA, + ACTIONS(1846), 1, anon_sym_GT, - STATE(897), 1, + STATE(902), 1, aux_sym_functionLiteralType_repeat1, - STATE(794), 2, + STATE(799), 2, sym_shebangComment, sym_lineComment, - [29864] = 11, + [30229] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48812,22 +49184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1830), 1, + ACTIONS(1848), 1, anon_sym_RPAREN, - STATE(898), 1, + STATE(903), 1, aux_sym_functionLiteralType_repeat1, - STATE(795), 2, + STATE(800), 2, sym_shebangComment, sym_lineComment, - [29899] = 8, + [30264] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48836,11 +49208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(283), 1, + ACTIONS(296), 1, anon_sym_COLON, - STATE(802), 1, + STATE(807), 1, sym_typeAnnotation, - STATE(796), 2, + STATE(801), 2, sym_shebangComment, sym_lineComment, ACTIONS(277), 4, @@ -48848,7 +49220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_RPAREN, - [29928] = 11, + [30293] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48857,22 +49229,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1832), 1, + ACTIONS(1850), 1, anon_sym_RPAREN, - STATE(886), 1, + STATE(891), 1, aux_sym_functionLiteralType_repeat1, - STATE(797), 2, + STATE(802), 2, sym_shebangComment, sym_lineComment, - [29963] = 11, + [30328] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48881,22 +49253,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1834), 1, + ACTIONS(1852), 1, anon_sym_GT, - STATE(913), 1, + STATE(918), 1, aux_sym_functionLiteralType_repeat1, - STATE(798), 2, + STATE(803), 2, sym_shebangComment, sym_lineComment, - [29998] = 11, + [30363] = 11, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48905,22 +49277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1836), 1, + ACTIONS(1854), 1, anon_sym_GT, - STATE(914), 1, + STATE(919), 1, aux_sym_functionLiteralType_repeat1, - STATE(799), 2, + STATE(804), 2, sym_shebangComment, sym_lineComment, - [30033] = 9, + [30398] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48929,20 +49301,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1838), 1, + ACTIONS(1856), 1, anon_sym_PIPE, - STATE(800), 2, + STATE(805), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1222), 3, + ACTIONS(1226), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_DASH_GT, - [30064] = 10, + [30429] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48951,20 +49323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1840), 1, + ACTIONS(1858), 1, anon_sym_DQUOTE, - ACTIONS(1842), 1, + ACTIONS(1860), 1, sym_escapeSequence, - STATE(811), 1, + STATE(816), 1, aux_sym_stringConstant_repeat1, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(801), 2, + STATE(806), 2, sym_shebangComment, sym_lineComment, - [30096] = 6, + [30461] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48973,16 +49345,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(802), 2, + STATE(807), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1844), 5, + ACTIONS(1862), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_in, anon_sym_RPAREN, anon_sym_DASH_GT, - [30120] = 10, + [30485] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -48991,20 +49363,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(847), 1, + ACTIONS(865), 1, anon_sym_LBRACE, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - STATE(293), 1, + STATE(318), 1, sym_objectBody, - STATE(803), 2, + STATE(808), 2, sym_shebangComment, sym_lineComment, - [30152] = 10, + [30517] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49013,20 +49385,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1842), 1, + ACTIONS(1860), 1, sym_escapeSequence, - ACTIONS(1846), 1, + ACTIONS(1864), 1, anon_sym_DQUOTE, - STATE(808), 1, + STATE(813), 1, aux_sym_stringConstant_repeat1, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(804), 2, + STATE(809), 2, sym_shebangComment, sym_lineComment, - [30184] = 10, + [30549] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49035,20 +49407,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1846), 1, + ACTIONS(1864), 1, anon_sym_DQUOTE_POUND, - ACTIONS(1848), 1, + ACTIONS(1866), 1, sym_escapeSequence1, - STATE(812), 1, + STATE(817), 1, aux_sym_stringConstant_repeat2, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(805), 2, + STATE(810), 2, sym_shebangComment, sym_lineComment, - [30216] = 10, + [30581] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49057,20 +49429,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1842), 1, + ACTIONS(1860), 1, sym_escapeSequence, - ACTIONS(1850), 1, + ACTIONS(1868), 1, anon_sym_DQUOTE, - STATE(801), 1, + STATE(806), 1, aux_sym_stringConstant_repeat1, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(806), 2, + STATE(811), 2, sym_shebangComment, sym_lineComment, - [30248] = 10, + [30613] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49081,18 +49453,18 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(273), 1, anon_sym_LBRACE, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - STATE(75), 1, + STATE(61), 1, sym_objectBody, - STATE(807), 2, + STATE(812), 2, sym_shebangComment, sym_lineComment, - [30280] = 10, + [30645] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49101,20 +49473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1842), 1, + ACTIONS(1860), 1, sym_escapeSequence, - ACTIONS(1852), 1, + ACTIONS(1870), 1, anon_sym_DQUOTE, - STATE(811), 1, + STATE(816), 1, aux_sym_stringConstant_repeat1, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(808), 2, + STATE(813), 2, sym_shebangComment, sym_lineComment, - [30312] = 10, + [30677] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49123,20 +49495,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1848), 1, + ACTIONS(1866), 1, sym_escapeSequence1, - ACTIONS(1850), 1, + ACTIONS(1868), 1, anon_sym_DQUOTE_POUND, - STATE(814), 1, + STATE(819), 1, aux_sym_stringConstant_repeat2, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(809), 2, + STATE(814), 2, sym_shebangComment, sym_lineComment, - [30344] = 9, + [30709] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49145,19 +49517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1854), 1, + ACTIONS(1872), 1, anon_sym_DQUOTE_POUND, - ACTIONS(1856), 1, + ACTIONS(1874), 1, sym_escapeSequence1, - ACTIONS(1859), 1, + ACTIONS(1877), 1, sym__sl1_string_chars, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(810), 3, + STATE(815), 3, sym_shebangComment, sym_lineComment, aux_sym_stringConstant_repeat2, - [30374] = 9, + [30739] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49166,19 +49538,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1862), 1, + ACTIONS(1880), 1, anon_sym_DQUOTE, - ACTIONS(1864), 1, + ACTIONS(1882), 1, sym_escapeSequence, - ACTIONS(1867), 1, + ACTIONS(1885), 1, sym__sl_string_chars, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(811), 3, + STATE(816), 3, sym_shebangComment, sym_lineComment, aux_sym_stringConstant_repeat1, - [30404] = 10, + [30769] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49187,20 +49559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1848), 1, + ACTIONS(1866), 1, sym_escapeSequence1, - ACTIONS(1852), 1, + ACTIONS(1870), 1, anon_sym_DQUOTE_POUND, - STATE(810), 1, + STATE(815), 1, aux_sym_stringConstant_repeat2, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(812), 2, + STATE(817), 2, sym_shebangComment, sym_lineComment, - [30436] = 10, + [30801] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49209,20 +49581,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(975), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_QMARK, - ACTIONS(1562), 1, + ACTIONS(1580), 1, anon_sym_PIPE, - STATE(434), 1, + STATE(475), 1, sym_objectBody, - STATE(813), 2, + STATE(818), 2, sym_shebangComment, sym_lineComment, - [30468] = 10, + [30833] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49231,20 +49603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1840), 1, + ACTIONS(1858), 1, anon_sym_DQUOTE_POUND, - ACTIONS(1848), 1, + ACTIONS(1866), 1, sym_escapeSequence1, - STATE(810), 1, + STATE(815), 1, aux_sym_stringConstant_repeat2, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(814), 2, + STATE(819), 2, sym_shebangComment, sym_lineComment, - [30500] = 10, + [30865] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49253,20 +49625,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1842), 1, + ACTIONS(1860), 1, sym_escapeSequence, - ACTIONS(1870), 1, + ACTIONS(1888), 1, anon_sym_DQUOTE, - STATE(819), 1, + STATE(824), 1, aux_sym_stringConstant_repeat1, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(815), 2, + STATE(820), 2, sym_shebangComment, sym_lineComment, - [30532] = 10, + [30897] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49275,20 +49647,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1848), 1, + ACTIONS(1866), 1, sym_escapeSequence1, - ACTIONS(1872), 1, + ACTIONS(1890), 1, anon_sym_DQUOTE_POUND, - STATE(810), 1, + STATE(815), 1, aux_sym_stringConstant_repeat2, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(816), 2, + STATE(821), 2, sym_shebangComment, sym_lineComment, - [30564] = 10, + [30929] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49297,20 +49669,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1842), 1, + ACTIONS(1860), 1, sym_escapeSequence, - ACTIONS(1872), 1, + ACTIONS(1890), 1, anon_sym_DQUOTE, - STATE(811), 1, + STATE(816), 1, aux_sym_stringConstant_repeat1, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(817), 2, + STATE(822), 2, sym_shebangComment, sym_lineComment, - [30596] = 10, + [30961] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49319,20 +49691,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1848), 1, + ACTIONS(1866), 1, sym_escapeSequence1, - ACTIONS(1870), 1, + ACTIONS(1888), 1, anon_sym_DQUOTE_POUND, - STATE(826), 1, + STATE(831), 1, aux_sym_stringConstant_repeat2, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(818), 2, + STATE(823), 2, sym_shebangComment, sym_lineComment, - [30628] = 10, + [30993] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49341,20 +49713,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1842), 1, + ACTIONS(1860), 1, sym_escapeSequence, - ACTIONS(1874), 1, + ACTIONS(1892), 1, anon_sym_DQUOTE, - STATE(811), 1, + STATE(816), 1, aux_sym_stringConstant_repeat1, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(819), 2, + STATE(824), 2, sym_shebangComment, sym_lineComment, - [30660] = 10, + [31025] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49363,20 +49735,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1842), 1, + ACTIONS(1860), 1, sym_escapeSequence, - ACTIONS(1876), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - STATE(822), 1, + STATE(827), 1, aux_sym_stringConstant_repeat1, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(820), 2, + STATE(825), 2, sym_shebangComment, sym_lineComment, - [30692] = 10, + [31057] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49385,20 +49757,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1848), 1, + ACTIONS(1866), 1, sym_escapeSequence1, - ACTIONS(1876), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE_POUND, - STATE(823), 1, + STATE(828), 1, aux_sym_stringConstant_repeat2, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(821), 2, + STATE(826), 2, sym_shebangComment, sym_lineComment, - [30724] = 10, + [31089] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49407,20 +49779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1842), 1, + ACTIONS(1860), 1, sym_escapeSequence, - ACTIONS(1878), 1, + ACTIONS(1896), 1, anon_sym_DQUOTE, - STATE(811), 1, + STATE(816), 1, aux_sym_stringConstant_repeat1, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(822), 2, + STATE(827), 2, sym_shebangComment, sym_lineComment, - [30756] = 10, + [31121] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49429,20 +49801,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1848), 1, + ACTIONS(1866), 1, sym_escapeSequence1, - ACTIONS(1878), 1, + ACTIONS(1896), 1, anon_sym_DQUOTE_POUND, - STATE(810), 1, + STATE(815), 1, aux_sym_stringConstant_repeat2, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(823), 2, + STATE(828), 2, sym_shebangComment, sym_lineComment, - [30788] = 10, + [31153] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49451,20 +49823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1848), 1, + ACTIONS(1866), 1, sym_escapeSequence1, - ACTIONS(1880), 1, + ACTIONS(1898), 1, anon_sym_DQUOTE_POUND, - STATE(816), 1, + STATE(821), 1, aux_sym_stringConstant_repeat2, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(824), 2, + STATE(829), 2, sym_shebangComment, sym_lineComment, - [30820] = 10, + [31185] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49473,20 +49845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1582), 1, + ACTIONS(1600), 1, sym__sl_string_chars, - ACTIONS(1842), 1, + ACTIONS(1860), 1, sym_escapeSequence, - ACTIONS(1880), 1, + ACTIONS(1898), 1, anon_sym_DQUOTE, - STATE(817), 1, + STATE(822), 1, aux_sym_stringConstant_repeat1, - STATE(892), 1, + STATE(897), 1, sym_slStringLiteralPart, - STATE(825), 2, + STATE(830), 2, sym_shebangComment, sym_lineComment, - [30852] = 10, + [31217] = 10, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49495,20 +49867,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1576), 1, + ACTIONS(1594), 1, sym__sl1_string_chars, - ACTIONS(1848), 1, + ACTIONS(1866), 1, sym_escapeSequence1, - ACTIONS(1874), 1, + ACTIONS(1892), 1, anon_sym_DQUOTE_POUND, - STATE(810), 1, + STATE(815), 1, aux_sym_stringConstant_repeat2, - STATE(893), 1, + STATE(898), 1, sym_slStringLiteralPart1, - STATE(826), 2, + STATE(831), 2, sym_shebangComment, sym_lineComment, - [30884] = 6, + [31249] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49517,15 +49889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(827), 2, + STATE(832), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1882), 4, + ACTIONS(1900), 4, sym__sl6_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence6, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [30907] = 6, + [31272] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49534,15 +49906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(828), 2, + STATE(833), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1884), 4, + ACTIONS(1902), 4, sym__sl5_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence5, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [30930] = 8, + [31295] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49553,15 +49925,15 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(279), 1, anon_sym_COLON, - STATE(802), 1, + STATE(807), 1, sym_typeAnnotation, ACTIONS(277), 2, anon_sym_COMMA, anon_sym_DASH_GT, - STATE(829), 2, + STATE(834), 2, sym_shebangComment, sym_lineComment, - [30957] = 6, + [31322] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49570,15 +49942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(830), 2, + STATE(835), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1886), 4, + ACTIONS(1904), 4, sym__ml5_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence5, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [30980] = 6, + [31345] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49587,15 +49959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(831), 2, + STATE(836), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1888), 4, + ACTIONS(1906), 4, sym__ml4_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, sym_escapeSequence4, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [31003] = 6, + [31368] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49604,15 +49976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(832), 2, + STATE(837), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1890), 4, + ACTIONS(1908), 4, sym__ml3_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, sym_escapeSequence3, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [31026] = 6, + [31391] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49621,15 +49993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(833), 2, + STATE(838), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1892), 4, + ACTIONS(1910), 4, sym__ml1_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, sym_escapeSequence1, anon_sym_BSLASH_POUND_LPAREN, - [31049] = 6, + [31414] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49638,15 +50010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(834), 2, + STATE(839), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1894), 4, + ACTIONS(1912), 4, sym__ml1_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, sym_escapeSequence1, anon_sym_BSLASH_POUND_LPAREN, - [31072] = 6, + [31437] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49655,15 +50027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(835), 2, + STATE(840), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1896), 4, + ACTIONS(1914), 4, sym__ml4_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, sym_escapeSequence4, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [31095] = 6, + [31460] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49672,15 +50044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(836), 2, + STATE(841), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1898), 4, + ACTIONS(1916), 4, sym__ml_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_escapeSequence, anon_sym_BSLASH_LPAREN, - [31118] = 6, + [31483] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49689,15 +50061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(837), 2, + STATE(842), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1900), 4, + ACTIONS(1918), 4, sym__ml4_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND, sym_escapeSequence4, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [31141] = 6, + [31506] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49706,15 +50078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(838), 2, + STATE(843), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1902), 4, + ACTIONS(1920), 4, sym__ml6_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence6, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [31164] = 6, + [31529] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49723,15 +50095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(839), 2, + STATE(844), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1904), 4, + ACTIONS(1922), 4, sym__ml_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_escapeSequence, anon_sym_BSLASH_LPAREN, - [31187] = 6, + [31552] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49740,15 +50112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(840), 2, + STATE(845), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1906), 4, + ACTIONS(1924), 4, sym__ml2_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, sym_escapeSequence2, anon_sym_BSLASH_POUND_POUND_LPAREN, - [31210] = 6, + [31575] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49757,15 +50129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(841), 2, + STATE(846), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1908), 4, + ACTIONS(1926), 4, sym__ml3_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, sym_escapeSequence3, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [31233] = 6, + [31598] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49774,15 +50146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(842), 2, + STATE(847), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1910), 4, + ACTIONS(1928), 4, sym__ml3_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND, sym_escapeSequence3, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [31256] = 6, + [31621] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49791,15 +50163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(843), 2, + STATE(848), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1912), 4, + ACTIONS(1930), 4, sym__ml5_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence5, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [31279] = 6, + [31644] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49808,15 +50180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(844), 2, + STATE(849), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1914), 4, + ACTIONS(1932), 4, sym__ml2_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, sym_escapeSequence2, anon_sym_BSLASH_POUND_POUND_LPAREN, - [31302] = 6, + [31667] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49825,15 +50197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(845), 2, + STATE(850), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1916), 4, + ACTIONS(1934), 4, sym__ml2_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND, sym_escapeSequence2, anon_sym_BSLASH_POUND_POUND_LPAREN, - [31325] = 6, + [31690] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49842,15 +50214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(846), 2, + STATE(851), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1918), 4, + ACTIONS(1936), 4, sym__ml5_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence5, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [31348] = 9, + [31713] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49859,18 +50231,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1202), 1, + ACTIONS(1218), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1938), 1, anon_sym_LPAREN, - STATE(596), 1, + STATE(606), 1, sym_parameterList, - STATE(954), 1, + STATE(959), 1, sym_typeParameterList, - STATE(847), 2, + STATE(852), 2, sym_shebangComment, sym_lineComment, - [31377] = 6, + [31742] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49879,15 +50251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(848), 2, + STATE(853), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1922), 4, + ACTIONS(1940), 4, sym__sl2_string_chars, anon_sym_DQUOTE_POUND_POUND, sym_escapeSequence2, anon_sym_BSLASH_POUND_POUND_LPAREN, - [31400] = 6, + [31765] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49896,15 +50268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(849), 2, + STATE(854), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1924), 4, + ACTIONS(1942), 4, sym__ml1_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND, sym_escapeSequence1, anon_sym_BSLASH_POUND_LPAREN, - [31423] = 6, + [31788] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49913,15 +50285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(850), 2, + STATE(855), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1926), 4, + ACTIONS(1944), 4, sym__sl_string_chars, anon_sym_DQUOTE, sym_escapeSequence, anon_sym_BSLASH_LPAREN, - [31446] = 6, + [31811] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49930,15 +50302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(851), 2, + STATE(856), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1928), 4, + ACTIONS(1946), 4, sym__ml_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_escapeSequence, anon_sym_BSLASH_LPAREN, - [31469] = 6, + [31834] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49947,15 +50319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(852), 2, + STATE(857), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1930), 4, + ACTIONS(1948), 4, sym__sl1_string_chars, anon_sym_DQUOTE_POUND, sym_escapeSequence1, anon_sym_BSLASH_POUND_LPAREN, - [31492] = 8, + [31857] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49964,17 +50336,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1932), 1, + ACTIONS(1950), 1, sym_identifier, - STATE(928), 1, + STATE(933), 1, sym_typeParameter, - ACTIONS(1934), 2, + ACTIONS(1952), 2, anon_sym_in, anon_sym_out, - STATE(853), 2, + STATE(858), 2, sym_shebangComment, sym_lineComment, - [31519] = 7, + [31884] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -49983,16 +50355,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1936), 1, + ACTIONS(1954), 1, anon_sym_COMMA, - ACTIONS(1824), 2, + ACTIONS(1842), 2, anon_sym_RPAREN, anon_sym_GT, - STATE(854), 3, + STATE(859), 3, sym_shebangComment, sym_lineComment, aux_sym_functionLiteralType_repeat1, - [31544] = 6, + [31909] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50001,15 +50373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(855), 2, + STATE(860), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1939), 4, + ACTIONS(1957), 4, sym__sl6_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence6, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [31567] = 6, + [31932] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50018,15 +50390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(856), 2, + STATE(861), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1886), 4, + ACTIONS(1904), 4, sym__sl5_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence5, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [31590] = 6, + [31955] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50035,15 +50407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(857), 2, + STATE(862), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1888), 4, + ACTIONS(1906), 4, sym__sl4_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, sym_escapeSequence4, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [31613] = 9, + [31978] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50052,18 +50424,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1202), 1, + ACTIONS(1218), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1938), 1, anon_sym_LPAREN, - STATE(595), 1, + STATE(614), 1, sym_parameterList, - STATE(936), 1, + STATE(941), 1, sym_typeParameterList, - STATE(858), 2, + STATE(863), 2, sym_shebangComment, sym_lineComment, - [31642] = 6, + [32007] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50072,15 +50444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(859), 2, + STATE(864), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1890), 4, + ACTIONS(1908), 4, sym__sl3_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND, sym_escapeSequence3, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [31665] = 6, + [32030] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50089,15 +50461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(860), 2, + STATE(865), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1941), 4, + ACTIONS(1959), 4, sym__sl6_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence6, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [31688] = 6, + [32053] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50106,15 +50478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(861), 2, + STATE(866), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1906), 4, + ACTIONS(1924), 4, sym__sl2_string_chars, anon_sym_DQUOTE_POUND_POUND, sym_escapeSequence2, anon_sym_BSLASH_POUND_POUND_LPAREN, - [31711] = 9, + [32076] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50123,18 +50495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1202), 1, + ACTIONS(1218), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1938), 1, anon_sym_LPAREN, - STATE(880), 1, + STATE(907), 1, sym_parameterList, - STATE(946), 1, + STATE(951), 1, sym_typeParameterList, - STATE(862), 2, + STATE(867), 2, sym_shebangComment, sym_lineComment, - [31740] = 6, + [32105] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50143,15 +50515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(863), 2, + STATE(868), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1943), 4, + ACTIONS(1961), 4, sym__ml6_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence6, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [31763] = 6, + [32128] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50160,15 +50532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(864), 2, + STATE(869), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1924), 4, + ACTIONS(1942), 4, sym__sl1_string_chars, anon_sym_DQUOTE_POUND, sym_escapeSequence1, anon_sym_BSLASH_POUND_LPAREN, - [31786] = 6, + [32151] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50177,15 +50549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(865), 2, + STATE(870), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1928), 4, + ACTIONS(1946), 4, sym__sl_string_chars, anon_sym_DQUOTE, sym_escapeSequence, anon_sym_BSLASH_LPAREN, - [31809] = 9, + [32174] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50194,18 +50566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1963), 1, anon_sym_EQ, - STATE(243), 1, + STATE(244), 1, aux_sym_classProperty_repeat1, - STATE(250), 1, + STATE(251), 1, sym_objectBody, - STATE(866), 2, + STATE(871), 2, sym_shebangComment, sym_lineComment, - [31838] = 6, + [32203] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50214,15 +50586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(867), 2, + STATE(872), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1947), 4, + ACTIONS(1965), 4, sym__sl4_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, sym_escapeSequence4, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [31861] = 9, + [32226] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50231,18 +50603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1202), 1, + ACTIONS(1218), 1, anon_sym_LT, - ACTIONS(1920), 1, + ACTIONS(1938), 1, anon_sym_LPAREN, - STATE(907), 1, + STATE(885), 1, sym_parameterList, - STATE(933), 1, + STATE(938), 1, sym_typeParameterList, - STATE(868), 2, + STATE(873), 2, sym_shebangComment, sym_lineComment, - [31890] = 6, + [32255] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50251,15 +50623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(869), 2, + STATE(874), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1949), 4, + ACTIONS(1967), 4, sym__sl3_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND, sym_escapeSequence3, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [31913] = 6, + [32278] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50268,15 +50640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(870), 2, + STATE(875), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1951), 4, + ACTIONS(1969), 4, sym__sl2_string_chars, anon_sym_DQUOTE_POUND_POUND, sym_escapeSequence2, anon_sym_BSLASH_POUND_POUND_LPAREN, - [31936] = 6, + [32301] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50285,15 +50657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(871), 2, + STATE(876), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1953), 4, + ACTIONS(1971), 4, sym__sl_string_chars, anon_sym_DQUOTE, sym_escapeSequence, anon_sym_BSLASH_LPAREN, - [31959] = 6, + [32324] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50302,15 +50674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(872), 2, + STATE(877), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1955), 4, + ACTIONS(1973), 4, sym__sl1_string_chars, anon_sym_DQUOTE_POUND, sym_escapeSequence1, anon_sym_BSLASH_POUND_LPAREN, - [31982] = 6, + [32347] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50319,15 +50691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(873), 2, + STATE(878), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1957), 4, + ACTIONS(1975), 4, sym__sl4_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND_POUND, sym_escapeSequence4, anon_sym_BSLASH_POUND_POUND_POUND_POUND_LPAREN, - [32005] = 8, + [32370] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50336,17 +50708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1932), 1, + ACTIONS(1950), 1, sym_identifier, - STATE(955), 1, + STATE(960), 1, sym_typeParameter, - ACTIONS(1934), 2, + ACTIONS(1952), 2, anon_sym_in, anon_sym_out, - STATE(874), 2, + STATE(879), 2, sym_shebangComment, sym_lineComment, - [32032] = 9, + [32397] = 9, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50355,18 +50727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1959), 1, + ACTIONS(1977), 1, anon_sym_EQ, - STATE(244), 1, + STATE(242), 1, aux_sym_classProperty_repeat1, - STATE(250), 1, + STATE(251), 1, sym_objectBody, - STATE(875), 2, + STATE(880), 2, sym_shebangComment, sym_lineComment, - [32061] = 6, + [32426] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50375,15 +50747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(876), 2, + STATE(881), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1939), 4, + ACTIONS(1957), 4, sym__ml6_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE_POUND_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence6, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_POUND_LPAREN, - [32084] = 6, + [32449] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50392,15 +50764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(877), 2, + STATE(882), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1961), 4, + ACTIONS(1979), 4, sym__sl3_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND, sym_escapeSequence3, anon_sym_BSLASH_POUND_POUND_POUND_LPAREN, - [32107] = 6, + [32472] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50409,15 +50781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(878), 2, + STATE(883), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1963), 4, + ACTIONS(1981), 4, sym__sl5_string_chars, anon_sym_DQUOTE_POUND_POUND_POUND_POUND_POUND, sym_escapeSequence5, anon_sym_BSLASH_POUND_POUND_POUND_POUND_POUND_LPAREN, - [32130] = 8, + [32495] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50426,16 +50798,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(988), 1, + STATE(993), 1, sym_stringConstant, - STATE(879), 2, + STATE(884), 2, sym_shebangComment, sym_lineComment, - [32156] = 8, + [32521] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50444,16 +50816,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(283), 1, + ACTIONS(296), 1, anon_sym_COLON, - ACTIONS(1328), 1, + ACTIONS(1358), 1, anon_sym_EQ, - STATE(632), 1, + STATE(653), 1, sym_typeAnnotation, - STATE(880), 2, + STATE(885), 2, sym_shebangComment, sym_lineComment, - [32182] = 8, + [32547] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50462,16 +50834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1202), 1, + ACTIONS(1218), 1, anon_sym_LT, - ACTIONS(1965), 1, + ACTIONS(1983), 1, anon_sym_EQ, - STATE(965), 1, + STATE(970), 1, sym_typeParameterList, - STATE(881), 2, + STATE(886), 2, sym_shebangComment, sym_lineComment, - [32208] = 8, + [32573] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50480,16 +50852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(633), 1, + STATE(640), 1, sym_stringConstant, - STATE(882), 2, + STATE(887), 2, sym_shebangComment, sym_lineComment, - [32234] = 8, + [32599] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50498,16 +50870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(616), 1, + STATE(621), 1, sym_stringConstant, - STATE(883), 2, + STATE(888), 2, sym_shebangComment, sym_lineComment, - [32260] = 8, + [32625] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50516,16 +50888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(618), 1, + STATE(635), 1, sym_stringConstant, - STATE(884), 2, + STATE(889), 2, sym_shebangComment, sym_lineComment, - [32286] = 7, + [32651] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50534,15 +50906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1967), 1, + ACTIONS(1985), 1, anon_sym_COMMA, - ACTIONS(1970), 1, + ACTIONS(1988), 1, anon_sym_RPAREN, - STATE(885), 3, + STATE(890), 3, sym_shebangComment, sym_lineComment, aux_sym_objectBodyParameters_repeat1, - [32310] = 8, + [32675] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50551,16 +50923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1972), 1, + ACTIONS(1990), 1, anon_sym_RPAREN, - STATE(854), 1, + STATE(859), 1, aux_sym_functionLiteralType_repeat1, - STATE(886), 2, + STATE(891), 2, sym_shebangComment, sym_lineComment, - [32336] = 8, + [32701] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50569,16 +50941,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1974), 1, + ACTIONS(1992), 1, anon_sym_COMMA, - ACTIONS(1976), 1, + ACTIONS(1994), 1, anon_sym_GT, - STATE(915), 1, + STATE(920), 1, aux_sym_typeParameterList_repeat1, - STATE(887), 2, + STATE(892), 2, sym_shebangComment, sym_lineComment, - [32362] = 8, + [32727] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50587,16 +50959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, + ACTIONS(1002), 1, anon_sym_COMMA, - ACTIONS(1978), 1, + ACTIONS(1996), 1, anon_sym_RPAREN, - STATE(909), 1, + STATE(914), 1, aux_sym_constrainedType_repeat1, - STATE(888), 2, + STATE(893), 2, sym_shebangComment, sym_lineComment, - [32388] = 8, + [32753] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50605,16 +50977,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1980), 1, + ACTIONS(1998), 1, anon_sym_GT, - STATE(854), 1, + STATE(859), 1, aux_sym_functionLiteralType_repeat1, - STATE(889), 2, + STATE(894), 2, sym_shebangComment, sym_lineComment, - [32414] = 8, + [32779] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50623,16 +50995,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1982), 1, + ACTIONS(2000), 1, anon_sym_COMMA, - ACTIONS(1984), 1, + ACTIONS(2002), 1, anon_sym_RPAREN, - STATE(885), 1, + STATE(890), 1, aux_sym_objectBodyParameters_repeat1, - STATE(890), 2, + STATE(895), 2, sym_shebangComment, sym_lineComment, - [32440] = 8, + [32805] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50641,16 +51013,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1202), 1, + ACTIONS(1218), 1, anon_sym_LT, - ACTIONS(1986), 1, + ACTIONS(2004), 1, anon_sym_EQ, - STATE(975), 1, + STATE(980), 1, sym_typeParameterList, - STATE(891), 2, + STATE(896), 2, sym_shebangComment, sym_lineComment, - [32466] = 6, + [32831] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50659,14 +51031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(892), 2, + STATE(897), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1988), 3, + ACTIONS(2006), 3, sym__sl_string_chars, anon_sym_DQUOTE, sym_escapeSequence, - [32488] = 6, + [32853] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50675,14 +51047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(893), 2, + STATE(898), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1990), 3, + ACTIONS(2008), 3, sym__sl1_string_chars, anon_sym_DQUOTE_POUND, sym_escapeSequence1, - [32510] = 8, + [32875] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50691,16 +51063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, + ACTIONS(1002), 1, anon_sym_COMMA, - ACTIONS(1992), 1, + ACTIONS(2010), 1, anon_sym_RPAREN, - STATE(909), 1, + STATE(914), 1, aux_sym_constrainedType_repeat1, - STATE(894), 2, + STATE(899), 2, sym_shebangComment, sym_lineComment, - [32536] = 8, + [32901] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50709,16 +51081,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(283), 1, + ACTIONS(296), 1, anon_sym_COLON, - ACTIONS(1350), 1, + ACTIONS(1391), 1, anon_sym_EQ, - STATE(631), 1, + STATE(647), 1, sym_typeAnnotation, - STATE(895), 2, + STATE(900), 2, sym_shebangComment, sym_lineComment, - [32562] = 8, + [32927] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50727,16 +51099,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, + ACTIONS(1002), 1, anon_sym_COMMA, - ACTIONS(1994), 1, + ACTIONS(2012), 1, anon_sym_RPAREN, - STATE(909), 1, + STATE(914), 1, aux_sym_constrainedType_repeat1, - STATE(896), 2, + STATE(901), 2, sym_shebangComment, sym_lineComment, - [32588] = 8, + [32953] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50745,16 +51117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1996), 1, + ACTIONS(2014), 1, anon_sym_GT, - STATE(854), 1, + STATE(859), 1, aux_sym_functionLiteralType_repeat1, - STATE(897), 2, + STATE(902), 2, sym_shebangComment, sym_lineComment, - [32614] = 8, + [32979] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50763,16 +51135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(1998), 1, + ACTIONS(2016), 1, anon_sym_RPAREN, - STATE(854), 1, + STATE(859), 1, aux_sym_functionLiteralType_repeat1, - STATE(898), 2, + STATE(903), 2, sym_shebangComment, sym_lineComment, - [32640] = 8, + [33005] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50781,16 +51153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(2000), 1, + ACTIONS(2018), 1, anon_sym_RPAREN, - STATE(854), 1, + STATE(859), 1, aux_sym_functionLiteralType_repeat1, - STATE(899), 2, + STATE(904), 2, sym_shebangComment, sym_lineComment, - [32666] = 8, + [33031] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50801,14 +51173,14 @@ static const uint16_t ts_small_parse_table[] = { sym_blockComment, ACTIONS(616), 1, anon_sym_RPAREN, - ACTIONS(2002), 1, + ACTIONS(2020), 1, sym_identifier, - STATE(921), 1, + STATE(926), 1, sym_typedIdentifier, - STATE(900), 2, + STATE(905), 2, sym_shebangComment, sym_lineComment, - [32692] = 8, + [33057] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50817,16 +51189,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(2004), 1, + ACTIONS(2022), 1, anon_sym_RPAREN, - STATE(854), 1, + STATE(859), 1, aux_sym_functionLiteralType_repeat1, - STATE(901), 2, + STATE(906), 2, sym_shebangComment, sym_lineComment, - [32718] = 6, + [33083] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50835,14 +51207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - STATE(902), 2, + ACTIONS(296), 1, + anon_sym_COLON, + ACTIONS(1379), 1, + anon_sym_EQ, + STATE(642), 1, + sym_typeAnnotation, + STATE(907), 2, sym_shebangComment, sym_lineComment, - ACTIONS(1970), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [32740] = 7, + [33109] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50851,15 +51225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1970), 1, + ACTIONS(1988), 1, anon_sym_DASH_GT, - ACTIONS(2006), 1, + ACTIONS(2024), 1, anon_sym_COMMA, - STATE(903), 3, + STATE(908), 3, sym_shebangComment, sym_lineComment, aux_sym_objectBodyParameters_repeat1, - [32764] = 8, + [33133] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50868,16 +51242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(987), 1, + STATE(992), 1, sym_stringConstant, - STATE(904), 2, + STATE(909), 2, sym_shebangComment, sym_lineComment, - [32790] = 8, + [33159] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50886,16 +51260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(997), 1, + STATE(1002), 1, sym_stringConstant, - STATE(905), 2, + STATE(910), 2, sym_shebangComment, sym_lineComment, - [32816] = 8, + [33185] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50904,16 +51278,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(2009), 1, + ACTIONS(2027), 1, anon_sym_RPAREN, - STATE(854), 1, + STATE(859), 1, aux_sym_functionLiteralType_repeat1, - STATE(906), 2, + STATE(911), 2, sym_shebangComment, sym_lineComment, - [32842] = 8, + [33211] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50922,16 +51296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(283), 1, - anon_sym_COLON, - ACTIONS(1334), 1, - anon_sym_EQ, - STATE(643), 1, - sym_typeAnnotation, - STATE(907), 2, + STATE(912), 2, sym_shebangComment, sym_lineComment, - [32868] = 7, + ACTIONS(1988), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [33233] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50940,15 +51312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1061), 1, + ACTIONS(1075), 1, sym__open_subscript_bracket, - ACTIONS(1059), 2, + ACTIONS(1051), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(908), 2, + STATE(913), 2, sym_shebangComment, sym_lineComment, - [32892] = 7, + [33257] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50957,15 +51329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1063), 1, + ACTIONS(1081), 1, anon_sym_RPAREN, - ACTIONS(2011), 1, + ACTIONS(2029), 1, anon_sym_COMMA, - STATE(909), 3, + STATE(914), 3, sym_shebangComment, sym_lineComment, aux_sym_constrainedType_repeat1, - [32916] = 8, + [33281] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50974,16 +51346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1202), 1, + ACTIONS(1218), 1, anon_sym_LT, - ACTIONS(2014), 1, + ACTIONS(2032), 1, anon_sym_EQ, - STATE(962), 1, + STATE(967), 1, sym_typeParameterList, - STATE(910), 2, + STATE(915), 2, sym_shebangComment, sym_lineComment, - [32942] = 8, + [33307] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -50992,16 +51364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(2016), 1, + ACTIONS(2034), 1, anon_sym_RPAREN, - STATE(854), 1, + STATE(859), 1, aux_sym_functionLiteralType_repeat1, - STATE(911), 2, + STATE(916), 2, sym_shebangComment, sym_lineComment, - [32968] = 8, + [33333] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51010,16 +51382,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, + ACTIONS(1002), 1, anon_sym_COMMA, - ACTIONS(2018), 1, + ACTIONS(2036), 1, anon_sym_RPAREN, - STATE(909), 1, + STATE(914), 1, aux_sym_constrainedType_repeat1, - STATE(912), 2, + STATE(917), 2, sym_shebangComment, sym_lineComment, - [32994] = 8, + [33359] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51028,16 +51400,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(2020), 1, + ACTIONS(2038), 1, anon_sym_GT, - STATE(854), 1, + STATE(859), 1, aux_sym_functionLiteralType_repeat1, - STATE(913), 2, + STATE(918), 2, sym_shebangComment, sym_lineComment, - [33020] = 8, + [33385] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51046,16 +51418,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_COMMA, - ACTIONS(2022), 1, + ACTIONS(2040), 1, anon_sym_GT, - STATE(854), 1, + STATE(859), 1, aux_sym_functionLiteralType_repeat1, - STATE(914), 2, + STATE(919), 2, sym_shebangComment, sym_lineComment, - [33046] = 7, + [33411] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51064,15 +51436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2024), 1, + ACTIONS(2042), 1, anon_sym_COMMA, - ACTIONS(2027), 1, + ACTIONS(2045), 1, anon_sym_GT, - STATE(915), 3, + STATE(920), 3, sym_shebangComment, sym_lineComment, aux_sym_typeParameterList_repeat1, - [33070] = 8, + [33435] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51081,16 +51453,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(998), 1, + STATE(1003), 1, sym_stringConstant, - STATE(916), 2, + STATE(921), 2, sym_shebangComment, sym_lineComment, - [33096] = 8, + [33461] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51099,16 +51471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, + ACTIONS(1002), 1, anon_sym_COMMA, - ACTIONS(2029), 1, + ACTIONS(2047), 1, anon_sym_RPAREN, - STATE(909), 1, + STATE(914), 1, aux_sym_constrainedType_repeat1, - STATE(917), 2, + STATE(922), 2, sym_shebangComment, sym_lineComment, - [33122] = 7, + [33487] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51117,15 +51489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1816), 1, + ACTIONS(1834), 1, anon_sym_EQ, - ACTIONS(1844), 2, + ACTIONS(1862), 2, anon_sym_COMMA, anon_sym_DASH_GT, - STATE(918), 2, + STATE(923), 2, sym_shebangComment, sym_lineComment, - [33146] = 7, + [33511] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51139,10 +51511,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(522), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(919), 2, + STATE(924), 2, sym_shebangComment, sym_lineComment, - [33170] = 8, + [33535] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51151,16 +51523,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(1003), 1, + STATE(1008), 1, sym_stringConstant, - STATE(920), 2, + STATE(925), 2, sym_shebangComment, sym_lineComment, - [33196] = 8, + [33561] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51169,16 +51541,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1982), 1, + ACTIONS(2000), 1, anon_sym_COMMA, - ACTIONS(2031), 1, + ACTIONS(2049), 1, anon_sym_RPAREN, - STATE(890), 1, + STATE(895), 1, aux_sym_objectBodyParameters_repeat1, - STATE(921), 2, + STATE(926), 2, sym_shebangComment, sym_lineComment, - [33222] = 8, + [33587] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51187,16 +51559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, + ACTIONS(1002), 1, anon_sym_COMMA, - ACTIONS(2033), 1, + ACTIONS(2051), 1, anon_sym_RPAREN, - STATE(909), 1, + STATE(914), 1, aux_sym_constrainedType_repeat1, - STATE(922), 2, + STATE(927), 2, sym_shebangComment, sym_lineComment, - [33248] = 8, + [33613] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51205,16 +51577,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1186), 1, + ACTIONS(1200), 1, anon_sym_DQUOTE, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_POUND_DQUOTE, - STATE(993), 1, + STATE(998), 1, sym_stringConstant, - STATE(923), 2, + STATE(928), 2, sym_shebangComment, sym_lineComment, - [33274] = 8, + [33639] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51223,16 +51595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2035), 1, + ACTIONS(2053), 1, anon_sym_COMMA, - ACTIONS(2037), 1, + ACTIONS(2055), 1, anon_sym_DASH_GT, - STATE(903), 1, + STATE(908), 1, aux_sym_objectBodyParameters_repeat1, - STATE(924), 2, + STATE(929), 2, sym_shebangComment, sym_lineComment, - [33300] = 8, + [33665] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51241,16 +51613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1202), 1, + ACTIONS(1218), 1, anon_sym_LT, - ACTIONS(2039), 1, + ACTIONS(2057), 1, anon_sym_EQ, - STATE(971), 1, + STATE(976), 1, sym_typeParameterList, - STATE(925), 2, + STATE(930), 2, sym_shebangComment, sym_lineComment, - [33326] = 8, + [33691] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51259,16 +51631,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2035), 1, + ACTIONS(2053), 1, anon_sym_COMMA, - ACTIONS(2041), 1, + ACTIONS(2059), 1, anon_sym_DASH_GT, - STATE(924), 1, + STATE(929), 1, aux_sym_objectBodyParameters_repeat1, - STATE(926), 2, + STATE(931), 2, sym_shebangComment, sym_lineComment, - [33352] = 8, + [33717] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51277,16 +51649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(983), 1, + ACTIONS(1002), 1, anon_sym_COMMA, - ACTIONS(2043), 1, + ACTIONS(2061), 1, anon_sym_RPAREN, - STATE(909), 1, + STATE(914), 1, aux_sym_constrainedType_repeat1, - STATE(927), 2, + STATE(932), 2, sym_shebangComment, sym_lineComment, - [33378] = 8, + [33743] = 8, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51295,16 +51667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1974), 1, + ACTIONS(1992), 1, anon_sym_COMMA, - ACTIONS(2045), 1, + ACTIONS(2063), 1, anon_sym_GT, - STATE(887), 1, + STATE(892), 1, aux_sym_typeParameterList_repeat1, - STATE(928), 2, + STATE(933), 2, sym_shebangComment, sym_lineComment, - [33404] = 7, + [33769] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51313,15 +51685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(881), 1, + ACTIONS(899), 1, sym__open_subscript_bracket, - ACTIONS(879), 2, + ACTIONS(875), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(929), 2, + STATE(934), 2, sym_shebangComment, sym_lineComment, - [33428] = 7, + [33793] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51330,14 +51702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - STATE(251), 1, + STATE(250), 1, sym_objectBody, - STATE(930), 2, + STATE(935), 2, sym_shebangComment, sym_lineComment, - [33451] = 7, + [33816] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51346,14 +51718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2002), 1, + ACTIONS(2020), 1, sym_identifier, - STATE(977), 1, + STATE(982), 1, sym_typedIdentifier, - STATE(931), 2, + STATE(936), 2, sym_shebangComment, sym_lineComment, - [33474] = 7, + [33839] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51362,14 +51734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2002), 1, + ACTIONS(2020), 1, sym_identifier, - STATE(1025), 1, + STATE(1030), 1, sym_typedIdentifier, - STATE(932), 2, + STATE(937), 2, sym_shebangComment, sym_lineComment, - [33497] = 7, + [33862] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51378,14 +51750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1920), 1, + ACTIONS(1938), 1, anon_sym_LPAREN, - STATE(880), 1, + STATE(907), 1, sym_parameterList, - STATE(933), 2, + STATE(938), 2, sym_shebangComment, sym_lineComment, - [33520] = 7, + [33885] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51394,14 +51766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2047), 1, + ACTIONS(2065), 1, sym_identifier, - STATE(607), 1, + STATE(611), 1, sym_qualifiedIdentifier, - STATE(934), 2, + STATE(939), 2, sym_shebangComment, sym_lineComment, - [33543] = 7, + [33908] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51410,14 +51782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2002), 1, + ACTIONS(2020), 1, sym_identifier, - STATE(1010), 1, + STATE(1015), 1, sym_typedIdentifier, - STATE(935), 2, + STATE(940), 2, sym_shebangComment, sym_lineComment, - [33566] = 7, + [33931] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51426,14 +51798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1920), 1, + ACTIONS(1938), 1, anon_sym_LPAREN, - STATE(602), 1, + STATE(617), 1, sym_parameterList, - STATE(936), 2, + STATE(941), 2, sym_shebangComment, sym_lineComment, - [33589] = 6, + [33954] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51442,13 +51814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2049), 2, + ACTIONS(2067), 2, anon_sym_COMMA, anon_sym_GT, - STATE(937), 2, + STATE(942), 2, sym_shebangComment, sym_lineComment, - [33610] = 6, + [33975] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51457,13 +51829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2051), 2, + ACTIONS(2069), 2, anon_sym_COMMA, anon_sym_GT, - STATE(938), 2, + STATE(943), 2, sym_shebangComment, sym_lineComment, - [33631] = 7, + [33996] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51472,14 +51844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2002), 1, + ACTIONS(2020), 1, sym_identifier, - STATE(902), 1, + STATE(912), 1, sym_typedIdentifier, - STATE(939), 2, + STATE(944), 2, sym_shebangComment, sym_lineComment, - [33654] = 7, + [34019] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51488,30 +51860,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2002), 1, + ACTIONS(2020), 1, sym_identifier, - STATE(991), 1, + STATE(996), 1, sym_typedIdentifier, - STATE(940), 2, + STATE(945), 2, sym_shebangComment, sym_lineComment, - [33677] = 7, + [34042] = 7, ACTIONS(5), 1, aux_sym_lineComment_token1, ACTIONS(7), 1, anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(2053), 1, + ACTIONS(2071), 1, sym_identifier, - ACTIONS(2055), 1, + ACTIONS(2073), 1, anon_sym_POUND_BANG, - ACTIONS(2057), 1, + ACTIONS(2075), 1, anon_sym_LF, - ACTIONS(2059), 1, + ACTIONS(2077), 1, sym_blockComment, - STATE(941), 2, + STATE(946), 2, sym_shebangComment, sym_lineComment, - [33700] = 7, + [34065] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51520,46 +51892,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2061), 1, + ACTIONS(2079), 1, sym_identifier, - STATE(619), 1, + STATE(631), 1, sym_qualifiedIdentifier, - STATE(942), 2, + STATE(947), 2, sym_shebangComment, sym_lineComment, - [33723] = 7, + [34088] = 7, ACTIONS(5), 1, aux_sym_lineComment_token1, ACTIONS(7), 1, anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(2055), 1, + ACTIONS(2073), 1, anon_sym_POUND_BANG, - ACTIONS(2059), 1, + ACTIONS(2077), 1, sym_blockComment, - ACTIONS(2063), 1, + ACTIONS(2081), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2083), 1, anon_sym_LF, - STATE(943), 2, + STATE(948), 2, sym_shebangComment, sym_lineComment, - [33746] = 7, + [34111] = 7, ACTIONS(5), 1, aux_sym_lineComment_token1, ACTIONS(7), 1, anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(2055), 1, + ACTIONS(2073), 1, anon_sym_POUND_BANG, - ACTIONS(2059), 1, + ACTIONS(2077), 1, sym_blockComment, - ACTIONS(2067), 1, + ACTIONS(2085), 1, sym_identifier, - ACTIONS(2069), 1, + ACTIONS(2087), 1, anon_sym_LF, - STATE(944), 2, + STATE(949), 2, sym_shebangComment, sym_lineComment, - [33769] = 7, + [34134] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51568,14 +51940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2047), 1, + ACTIONS(2065), 1, sym_identifier, - STATE(613), 1, + STATE(612), 1, sym_qualifiedIdentifier, - STATE(945), 2, + STATE(950), 2, sym_shebangComment, sym_lineComment, - [33792] = 7, + [34157] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51584,14 +51956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1920), 1, + ACTIONS(1938), 1, anon_sym_LPAREN, - STATE(895), 1, + STATE(900), 1, sym_parameterList, - STATE(946), 2, + STATE(951), 2, sym_shebangComment, sym_lineComment, - [33815] = 7, + [34180] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51600,14 +51972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2071), 1, + ACTIONS(2089), 1, anon_sym_COMMA, - ACTIONS(2073), 1, + ACTIONS(2091), 1, anon_sym_in, - STATE(947), 2, + STATE(952), 2, sym_shebangComment, sym_lineComment, - [33838] = 7, + [34203] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51616,14 +51988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - STATE(257), 1, + STATE(252), 1, sym_objectBody, - STATE(948), 2, + STATE(953), 2, sym_shebangComment, sym_lineComment, - [33861] = 7, + [34226] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51632,14 +52004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2075), 1, + ACTIONS(2093), 1, sym_identifier, - STATE(902), 1, + STATE(912), 1, sym_typedIdentifier, - STATE(949), 2, + STATE(954), 2, sym_shebangComment, sym_lineComment, - [33884] = 7, + [34249] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51648,14 +52020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - STATE(258), 1, + STATE(257), 1, sym_objectBody, - STATE(950), 2, + STATE(955), 2, sym_shebangComment, sym_lineComment, - [33907] = 7, + [34272] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51664,14 +52036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - STATE(253), 1, + STATE(260), 1, sym_objectBody, - STATE(951), 2, + STATE(956), 2, sym_shebangComment, sym_lineComment, - [33930] = 7, + [34295] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51680,14 +52052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2002), 1, + ACTIONS(2020), 1, sym_identifier, - STATE(963), 1, + STATE(968), 1, sym_typedIdentifier, - STATE(952), 2, + STATE(957), 2, sym_shebangComment, sym_lineComment, - [33953] = 7, + [34318] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51696,14 +52068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2002), 1, + ACTIONS(2020), 1, sym_identifier, - STATE(947), 1, + STATE(952), 1, sym_typedIdentifier, - STATE(953), 2, + STATE(958), 2, sym_shebangComment, sym_lineComment, - [33976] = 7, + [34341] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51712,14 +52084,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1920), 1, + ACTIONS(1938), 1, anon_sym_LPAREN, - STATE(595), 1, + STATE(614), 1, sym_parameterList, - STATE(954), 2, + STATE(959), 2, sym_shebangComment, sym_lineComment, - [33999] = 6, + [34364] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51728,13 +52100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2027), 2, + ACTIONS(2045), 2, anon_sym_COMMA, anon_sym_GT, - STATE(955), 2, + STATE(960), 2, sym_shebangComment, sym_lineComment, - [34020] = 7, + [34385] = 7, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51743,14 +52115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2061), 1, + ACTIONS(2079), 1, sym_identifier, - STATE(620), 1, + STATE(634), 1, sym_qualifiedIdentifier, - STATE(956), 2, + STATE(961), 2, sym_shebangComment, sym_lineComment, - [34043] = 6, + [34408] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51759,12 +52131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2077), 1, + ACTIONS(2095), 1, sym_identifier, - STATE(957), 2, + STATE(962), 2, sym_shebangComment, sym_lineComment, - [34063] = 6, + [34428] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51773,12 +52145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2079), 1, + ACTIONS(2097), 1, sym_identifier, - STATE(958), 2, + STATE(963), 2, sym_shebangComment, sym_lineComment, - [34083] = 6, + [34448] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51787,26 +52159,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2081), 1, + ACTIONS(2099), 1, anon_sym_DASH_GT, - STATE(959), 2, + STATE(964), 2, sym_shebangComment, sym_lineComment, - [34103] = 6, + [34468] = 6, ACTIONS(5), 1, aux_sym_lineComment_token1, ACTIONS(7), 1, anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(2055), 1, + ACTIONS(2073), 1, anon_sym_POUND_BANG, - ACTIONS(2059), 1, + ACTIONS(2077), 1, sym_blockComment, - ACTIONS(2083), 1, + ACTIONS(2101), 1, aux_sym_shebangComment_token1, - STATE(960), 2, + STATE(965), 2, sym_shebangComment, sym_lineComment, - [34123] = 6, + [34488] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51815,12 +52187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2085), 1, + ACTIONS(2103), 1, sym_identifier, - STATE(961), 2, + STATE(966), 2, sym_shebangComment, sym_lineComment, - [34143] = 6, + [34508] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51829,12 +52201,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2087), 1, + ACTIONS(2105), 1, anon_sym_EQ, - STATE(962), 2, + STATE(967), 2, sym_shebangComment, sym_lineComment, - [34163] = 6, + [34528] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51843,12 +52215,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2089), 1, + ACTIONS(2107), 1, anon_sym_in, - STATE(963), 2, + STATE(968), 2, sym_shebangComment, sym_lineComment, - [34183] = 6, + [34548] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51857,12 +52229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2091), 1, + ACTIONS(2109), 1, anon_sym_DASH_GT, - STATE(964), 2, + STATE(969), 2, sym_shebangComment, sym_lineComment, - [34203] = 6, + [34568] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51871,12 +52243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2014), 1, + ACTIONS(2032), 1, anon_sym_EQ, - STATE(965), 2, + STATE(970), 2, sym_shebangComment, sym_lineComment, - [34223] = 6, + [34588] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51885,12 +52257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2093), 1, + ACTIONS(2111), 1, anon_sym_DASH_GT, - STATE(966), 2, + STATE(971), 2, sym_shebangComment, sym_lineComment, - [34243] = 6, + [34608] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51899,12 +52271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2095), 1, + ACTIONS(2113), 1, anon_sym_EQ, - STATE(967), 2, + STATE(972), 2, sym_shebangComment, sym_lineComment, - [34263] = 6, + [34628] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51913,12 +52285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2097), 1, + ACTIONS(2115), 1, anon_sym_EQ, - STATE(968), 2, + STATE(973), 2, sym_shebangComment, sym_lineComment, - [34283] = 6, + [34648] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51927,12 +52299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2099), 1, + ACTIONS(2117), 1, anon_sym_LPAREN, - STATE(969), 2, + STATE(974), 2, sym_shebangComment, sym_lineComment, - [34303] = 6, + [34668] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51941,12 +52313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2101), 1, + ACTIONS(2119), 1, anon_sym_LPAREN, - STATE(970), 2, + STATE(975), 2, sym_shebangComment, sym_lineComment, - [34323] = 6, + [34688] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51955,12 +52327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1965), 1, + ACTIONS(1983), 1, anon_sym_EQ, - STATE(971), 2, + STATE(976), 2, sym_shebangComment, sym_lineComment, - [34343] = 6, + [34708] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51969,12 +52341,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2103), 1, + ACTIONS(2121), 1, anon_sym_LPAREN, - STATE(972), 2, + STATE(977), 2, sym_shebangComment, sym_lineComment, - [34363] = 6, + [34728] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51983,12 +52355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2105), 1, + ACTIONS(2123), 1, anon_sym_LPAREN, - STATE(973), 2, + STATE(978), 2, sym_shebangComment, sym_lineComment, - [34383] = 6, + [34748] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -51997,12 +52369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2107), 1, + ACTIONS(2125), 1, sym_identifier, - STATE(974), 2, + STATE(979), 2, sym_shebangComment, sym_lineComment, - [34403] = 6, + [34768] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52011,12 +52383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2039), 1, + ACTIONS(2057), 1, anon_sym_EQ, - STATE(975), 2, + STATE(980), 2, sym_shebangComment, sym_lineComment, - [34423] = 6, + [34788] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52025,12 +52397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(1816), 1, + ACTIONS(1834), 1, anon_sym_EQ, - STATE(976), 2, + STATE(981), 2, sym_shebangComment, sym_lineComment, - [34443] = 6, + [34808] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52039,12 +52411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2109), 1, + ACTIONS(2127), 1, anon_sym_EQ, - STATE(977), 2, + STATE(982), 2, sym_shebangComment, sym_lineComment, - [34463] = 6, + [34828] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52053,12 +52425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2111), 1, + ACTIONS(2129), 1, anon_sym_LPAREN, - STATE(978), 2, + STATE(983), 2, sym_shebangComment, sym_lineComment, - [34483] = 6, + [34848] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52067,12 +52439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2113), 1, + ACTIONS(2131), 1, anon_sym_LPAREN, - STATE(979), 2, + STATE(984), 2, sym_shebangComment, sym_lineComment, - [34503] = 6, + [34868] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52081,12 +52453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2115), 1, + ACTIONS(2133), 1, sym_identifier, - STATE(980), 2, + STATE(985), 2, sym_shebangComment, sym_lineComment, - [34523] = 6, + [34888] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52095,12 +52467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2117), 1, + ACTIONS(2135), 1, sym_identifier, - STATE(981), 2, + STATE(986), 2, sym_shebangComment, sym_lineComment, - [34543] = 6, + [34908] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52109,12 +52481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2119), 1, + ACTIONS(2137), 1, anon_sym_DASH_GT, - STATE(982), 2, + STATE(987), 2, sym_shebangComment, sym_lineComment, - [34563] = 6, + [34928] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52123,12 +52495,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2121), 1, + ACTIONS(2139), 1, anon_sym_DASH_GT, - STATE(983), 2, + STATE(988), 2, sym_shebangComment, sym_lineComment, - [34583] = 6, + [34948] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52137,12 +52509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2123), 1, + ACTIONS(2141), 1, anon_sym_DASH_GT, - STATE(984), 2, + STATE(989), 2, sym_shebangComment, sym_lineComment, - [34603] = 6, + [34968] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52151,12 +52523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2125), 1, + ACTIONS(2143), 1, anon_sym_DASH_GT, - STATE(985), 2, + STATE(990), 2, sym_shebangComment, sym_lineComment, - [34623] = 6, + [34988] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52165,12 +52537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2127), 1, + ACTIONS(2145), 1, anon_sym_LPAREN, - STATE(986), 2, + STATE(991), 2, sym_shebangComment, sym_lineComment, - [34643] = 6, + [35008] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52179,12 +52551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2129), 1, + ACTIONS(2147), 1, anon_sym_RPAREN, - STATE(987), 2, + STATE(992), 2, sym_shebangComment, sym_lineComment, - [34663] = 6, + [35028] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52193,12 +52565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2131), 1, + ACTIONS(2149), 1, anon_sym_RPAREN, - STATE(988), 2, + STATE(993), 2, sym_shebangComment, sym_lineComment, - [34683] = 6, + [35048] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52207,12 +52579,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2133), 1, + ACTIONS(2151), 1, sym_identifier, - STATE(989), 2, + STATE(994), 2, sym_shebangComment, sym_lineComment, - [34703] = 6, + [35068] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52221,12 +52593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2135), 1, + ACTIONS(2153), 1, sym_identifier, - STATE(990), 2, + STATE(995), 2, sym_shebangComment, sym_lineComment, - [34723] = 6, + [35088] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52235,26 +52607,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2137), 1, + ACTIONS(2155), 1, anon_sym_EQ, - STATE(991), 2, + STATE(996), 2, sym_shebangComment, sym_lineComment, - [34743] = 6, + [35108] = 6, ACTIONS(5), 1, aux_sym_lineComment_token1, ACTIONS(7), 1, anon_sym_SLASH_SLASH_DOLLAR, - ACTIONS(2055), 1, + ACTIONS(2073), 1, anon_sym_POUND_BANG, - ACTIONS(2059), 1, + ACTIONS(2077), 1, sym_blockComment, - ACTIONS(2139), 1, + ACTIONS(2157), 1, aux_sym_shebangComment_token1, - STATE(992), 2, + STATE(997), 2, sym_shebangComment, sym_lineComment, - [34763] = 6, + [35128] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52263,12 +52635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2141), 1, + ACTIONS(2159), 1, anon_sym_RPAREN, - STATE(993), 2, + STATE(998), 2, sym_shebangComment, sym_lineComment, - [34783] = 6, + [35148] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52277,12 +52649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2143), 1, + ACTIONS(2161), 1, anon_sym_LPAREN, - STATE(994), 2, + STATE(999), 2, sym_shebangComment, sym_lineComment, - [34803] = 6, + [35168] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52291,12 +52663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2145), 1, + ACTIONS(2163), 1, sym_identifier, - STATE(995), 2, + STATE(1000), 2, sym_shebangComment, sym_lineComment, - [34823] = 6, + [35188] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52305,12 +52677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2147), 1, + ACTIONS(2165), 1, anon_sym_DASH_GT, - STATE(996), 2, + STATE(1001), 2, sym_shebangComment, sym_lineComment, - [34843] = 6, + [35208] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52319,12 +52691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2149), 1, + ACTIONS(2167), 1, anon_sym_RPAREN, - STATE(997), 2, + STATE(1002), 2, sym_shebangComment, sym_lineComment, - [34863] = 6, + [35228] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52333,12 +52705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2151), 1, + ACTIONS(2169), 1, anon_sym_RPAREN, - STATE(998), 2, + STATE(1003), 2, sym_shebangComment, sym_lineComment, - [34883] = 6, + [35248] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52347,12 +52719,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2153), 1, + ACTIONS(2171), 1, sym_identifier, - STATE(999), 2, + STATE(1004), 2, sym_shebangComment, sym_lineComment, - [34903] = 6, + [35268] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52361,12 +52733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2155), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - STATE(1000), 2, + STATE(1005), 2, sym_shebangComment, sym_lineComment, - [34923] = 6, + [35288] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52375,12 +52747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2157), 1, + ACTIONS(2175), 1, ts_builtin_sym_end, - STATE(1001), 2, + STATE(1006), 2, sym_shebangComment, sym_lineComment, - [34943] = 6, + [35308] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52389,12 +52761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2159), 1, + ACTIONS(2177), 1, anon_sym_DASH_GT, - STATE(1002), 2, + STATE(1007), 2, sym_shebangComment, sym_lineComment, - [34963] = 6, + [35328] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52403,12 +52775,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2161), 1, + ACTIONS(2179), 1, anon_sym_RPAREN, - STATE(1003), 2, + STATE(1008), 2, sym_shebangComment, sym_lineComment, - [34983] = 6, + [35348] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52417,12 +52789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2163), 1, + ACTIONS(2181), 1, anon_sym_DASH_GT, - STATE(1004), 2, + STATE(1009), 2, sym_shebangComment, sym_lineComment, - [35003] = 6, + [35368] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52431,12 +52803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2165), 1, + ACTIONS(2183), 1, anon_sym_DASH_GT, - STATE(1005), 2, + STATE(1010), 2, sym_shebangComment, sym_lineComment, - [35023] = 6, + [35388] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52445,12 +52817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2167), 1, + ACTIONS(2185), 1, sym_identifier, - STATE(1006), 2, + STATE(1011), 2, sym_shebangComment, sym_lineComment, - [35043] = 6, + [35408] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52459,12 +52831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2169), 1, + ACTIONS(2187), 1, anon_sym_LPAREN, - STATE(1007), 2, + STATE(1012), 2, sym_shebangComment, sym_lineComment, - [35063] = 6, + [35428] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52473,12 +52845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2171), 1, + ACTIONS(2189), 1, anon_sym_LPAREN, - STATE(1008), 2, + STATE(1013), 2, sym_shebangComment, sym_lineComment, - [35083] = 6, + [35448] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52487,12 +52859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2173), 1, + ACTIONS(2191), 1, sym_identifier, - STATE(1009), 2, + STATE(1014), 2, sym_shebangComment, sym_lineComment, - [35103] = 6, + [35468] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52501,12 +52873,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2175), 1, + ACTIONS(2193), 1, anon_sym_EQ, - STATE(1010), 2, + STATE(1015), 2, sym_shebangComment, sym_lineComment, - [35123] = 6, + [35488] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52515,12 +52887,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2177), 1, + ACTIONS(2195), 1, sym_identifier, - STATE(1011), 2, + STATE(1016), 2, sym_shebangComment, sym_lineComment, - [35143] = 6, + [35508] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52529,12 +52901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2179), 1, + ACTIONS(2197), 1, sym_identifier, - STATE(1012), 2, + STATE(1017), 2, sym_shebangComment, sym_lineComment, - [35163] = 6, + [35528] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52543,12 +52915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2181), 1, + ACTIONS(2199), 1, anon_sym_DASH_GT, - STATE(1013), 2, + STATE(1018), 2, sym_shebangComment, sym_lineComment, - [35183] = 6, + [35548] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52557,12 +52929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2183), 1, + ACTIONS(2201), 1, sym_identifier, - STATE(1014), 2, + STATE(1019), 2, sym_shebangComment, sym_lineComment, - [35203] = 6, + [35568] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52571,12 +52943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2185), 1, + ACTIONS(2203), 1, anon_sym_DASH_GT, - STATE(1015), 2, + STATE(1020), 2, sym_shebangComment, sym_lineComment, - [35223] = 6, + [35588] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52585,12 +52957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2187), 1, + ACTIONS(2205), 1, anon_sym_DASH_GT, - STATE(1016), 2, + STATE(1021), 2, sym_shebangComment, sym_lineComment, - [35243] = 6, + [35608] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52599,12 +52971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2189), 1, + ACTIONS(2207), 1, sym_identifier, - STATE(1017), 2, + STATE(1022), 2, sym_shebangComment, sym_lineComment, - [35263] = 6, + [35628] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52613,12 +52985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2191), 1, + ACTIONS(2209), 1, anon_sym_DASH_GT, - STATE(1018), 2, + STATE(1023), 2, sym_shebangComment, sym_lineComment, - [35283] = 6, + [35648] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52627,12 +52999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2193), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(1019), 2, + STATE(1024), 2, sym_shebangComment, sym_lineComment, - [35303] = 6, + [35668] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52641,12 +53013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2195), 1, + ACTIONS(2213), 1, sym_identifier, - STATE(1020), 2, + STATE(1025), 2, sym_shebangComment, sym_lineComment, - [35323] = 6, + [35688] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52655,12 +53027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2197), 1, + ACTIONS(2215), 1, sym_identifier, - STATE(1021), 2, + STATE(1026), 2, sym_shebangComment, sym_lineComment, - [35343] = 6, + [35708] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52669,12 +53041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2199), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - STATE(1022), 2, + STATE(1027), 2, sym_shebangComment, sym_lineComment, - [35363] = 6, + [35728] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52683,12 +53055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2201), 1, + ACTIONS(2219), 1, anon_sym_LPAREN, - STATE(1023), 2, + STATE(1028), 2, sym_shebangComment, sym_lineComment, - [35383] = 6, + [35748] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52697,12 +53069,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2203), 1, + ACTIONS(2221), 1, sym_identifier, - STATE(1024), 2, + STATE(1029), 2, sym_shebangComment, sym_lineComment, - [35403] = 6, + [35768] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52711,12 +53083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2205), 1, + ACTIONS(2223), 1, anon_sym_EQ, - STATE(1025), 2, + STATE(1030), 2, sym_shebangComment, sym_lineComment, - [35423] = 6, + [35788] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52725,12 +53097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2207), 1, + ACTIONS(2225), 1, anon_sym_LPAREN, - STATE(1026), 2, + STATE(1031), 2, sym_shebangComment, sym_lineComment, - [35443] = 6, + [35808] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52739,12 +53111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2209), 1, + ACTIONS(2227), 1, anon_sym_LPAREN, - STATE(1027), 2, + STATE(1032), 2, sym_shebangComment, sym_lineComment, - [35463] = 6, + [35828] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52753,12 +53125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2211), 1, + ACTIONS(2229), 1, anon_sym_LPAREN, - STATE(1028), 2, + STATE(1033), 2, sym_shebangComment, sym_lineComment, - [35483] = 6, + [35848] = 6, ACTIONS(3), 1, anon_sym_POUND_BANG, ACTIONS(5), 1, @@ -52767,16 +53139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH_DOLLAR, ACTIONS(9), 1, sym_blockComment, - ACTIONS(2213), 1, + ACTIONS(2231), 1, anon_sym_DASH_GT, - STATE(1029), 2, + STATE(1034), 2, sym_shebangComment, sym_lineComment, - [35503] = 1, - ACTIONS(2215), 1, + [35868] = 1, + ACTIONS(2233), 1, ts_builtin_sym_end, - [35507] = 1, - ACTIONS(1264), 1, + [35872] = 1, + ACTIONS(1314), 1, ts_builtin_sym_end, }; @@ -52785,12 +53157,12 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(243)] = 82, [SMALL_STATE(244)] = 164, [SMALL_STATE(245)] = 246, - [SMALL_STATE(246)] = 328, + [SMALL_STATE(246)] = 326, [SMALL_STATE(247)] = 408, [SMALL_STATE(248)] = 483, [SMALL_STATE(249)] = 558, [SMALL_STATE(250)] = 633, - [SMALL_STATE(251)] = 707, + [SMALL_STATE(251)] = 709, [SMALL_STATE(252)] = 783, [SMALL_STATE(253)] = 856, [SMALL_STATE(254)] = 929, @@ -52799,1827 +53171,1841 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(257)] = 1148, [SMALL_STATE(258)] = 1221, [SMALL_STATE(259)] = 1294, - [SMALL_STATE(260)] = 1362, - [SMALL_STATE(261)] = 1428, - [SMALL_STATE(262)] = 1496, - [SMALL_STATE(263)] = 1562, - [SMALL_STATE(264)] = 1630, - [SMALL_STATE(265)] = 1697, - [SMALL_STATE(266)] = 1760, - [SMALL_STATE(267)] = 1823, - [SMALL_STATE(268)] = 1886, - [SMALL_STATE(269)] = 1949, - [SMALL_STATE(270)] = 2012, - [SMALL_STATE(271)] = 2079, - [SMALL_STATE(272)] = 2142, - [SMALL_STATE(273)] = 2205, - [SMALL_STATE(274)] = 2274, - [SMALL_STATE(275)] = 2341, - [SMALL_STATE(276)] = 2404, - [SMALL_STATE(277)] = 2467, - [SMALL_STATE(278)] = 2538, - [SMALL_STATE(279)] = 2601, - [SMALL_STATE(280)] = 2664, - [SMALL_STATE(281)] = 2731, - [SMALL_STATE(282)] = 2800, - [SMALL_STATE(283)] = 2863, - [SMALL_STATE(284)] = 2930, - [SMALL_STATE(285)] = 2996, - [SMALL_STATE(286)] = 3061, - [SMALL_STATE(287)] = 3149, - [SMALL_STATE(288)] = 3209, - [SMALL_STATE(289)] = 3269, - [SMALL_STATE(290)] = 3329, - [SMALL_STATE(291)] = 3389, - [SMALL_STATE(292)] = 3449, - [SMALL_STATE(293)] = 3509, - [SMALL_STATE(294)] = 3569, - [SMALL_STATE(295)] = 3639, - [SMALL_STATE(296)] = 3699, - [SMALL_STATE(297)] = 3759, - [SMALL_STATE(298)] = 3819, - [SMALL_STATE(299)] = 3887, - [SMALL_STATE(300)] = 3947, - [SMALL_STATE(301)] = 4039, - [SMALL_STATE(302)] = 4131, - [SMALL_STATE(303)] = 4191, - [SMALL_STATE(304)] = 4251, - [SMALL_STATE(305)] = 4313, - [SMALL_STATE(306)] = 4377, - [SMALL_STATE(307)] = 4437, - [SMALL_STATE(308)] = 4529, - [SMALL_STATE(309)] = 4589, - [SMALL_STATE(310)] = 4649, - [SMALL_STATE(311)] = 4741, - [SMALL_STATE(312)] = 4833, - [SMALL_STATE(313)] = 4893, - [SMALL_STATE(314)] = 4985, - [SMALL_STATE(315)] = 5045, - [SMALL_STATE(316)] = 5105, - [SMALL_STATE(317)] = 5197, - [SMALL_STATE(318)] = 5257, - [SMALL_STATE(319)] = 5317, - [SMALL_STATE(320)] = 5377, - [SMALL_STATE(321)] = 5437, - [SMALL_STATE(322)] = 5529, - [SMALL_STATE(323)] = 5589, - [SMALL_STATE(324)] = 5653, - [SMALL_STATE(325)] = 5713, - [SMALL_STATE(326)] = 5773, - [SMALL_STATE(327)] = 5851, - [SMALL_STATE(328)] = 5935, - [SMALL_STATE(329)] = 6017, - [SMALL_STATE(330)] = 6097, - [SMALL_STATE(331)] = 6188, - [SMALL_STATE(332)] = 6279, - [SMALL_STATE(333)] = 6370, - [SMALL_STATE(334)] = 6461, - [SMALL_STATE(335)] = 6552, - [SMALL_STATE(336)] = 6643, - [SMALL_STATE(337)] = 6734, - [SMALL_STATE(338)] = 6825, - [SMALL_STATE(339)] = 6883, - [SMALL_STATE(340)] = 6973, - [SMALL_STATE(341)] = 7063, - [SMALL_STATE(342)] = 7119, - [SMALL_STATE(343)] = 7209, - [SMALL_STATE(344)] = 7277, - [SMALL_STATE(345)] = 7331, - [SMALL_STATE(346)] = 7389, - [SMALL_STATE(347)] = 7445, - [SMALL_STATE(348)] = 7535, - [SMALL_STATE(349)] = 7625, - [SMALL_STATE(350)] = 7676, - [SMALL_STATE(351)] = 7728, - [SMALL_STATE(352)] = 7782, - [SMALL_STATE(353)] = 7836, - [SMALL_STATE(354)] = 7890, - [SMALL_STATE(355)] = 7942, - [SMALL_STATE(356)] = 7991, - [SMALL_STATE(357)] = 8040, - [SMALL_STATE(358)] = 8097, - [SMALL_STATE(359)] = 8156, - [SMALL_STATE(360)] = 8209, - [SMALL_STATE(361)] = 8258, - [SMALL_STATE(362)] = 8311, - [SMALL_STATE(363)] = 8360, - [SMALL_STATE(364)] = 8413, - [SMALL_STATE(365)] = 8466, - [SMALL_STATE(366)] = 8537, - [SMALL_STATE(367)] = 8606, - [SMALL_STATE(368)] = 8661, - [SMALL_STATE(369)] = 8716, - [SMALL_STATE(370)] = 8783, - [SMALL_STATE(371)] = 8832, - [SMALL_STATE(372)] = 8897, - [SMALL_STATE(373)] = 8976, - [SMALL_STATE(374)] = 9029, - [SMALL_STATE(375)] = 9104, - [SMALL_STATE(376)] = 9183, - [SMALL_STATE(377)] = 9232, - [SMALL_STATE(378)] = 9281, - [SMALL_STATE(379)] = 9334, - [SMALL_STATE(380)] = 9383, - [SMALL_STATE(381)] = 9462, - [SMALL_STATE(382)] = 9515, - [SMALL_STATE(383)] = 9572, - [SMALL_STATE(384)] = 9621, - [SMALL_STATE(385)] = 9670, - [SMALL_STATE(386)] = 9749, - [SMALL_STATE(387)] = 9828, - [SMALL_STATE(388)] = 9907, - [SMALL_STATE(389)] = 9956, - [SMALL_STATE(390)] = 10035, - [SMALL_STATE(391)] = 10114, - [SMALL_STATE(392)] = 10163, - [SMALL_STATE(393)] = 10211, - [SMALL_STATE(394)] = 10263, - [SMALL_STATE(395)] = 10311, - [SMALL_STATE(396)] = 10363, - [SMALL_STATE(397)] = 10414, - [SMALL_STATE(398)] = 10495, - [SMALL_STATE(399)] = 10572, - [SMALL_STATE(400)] = 10653, + [SMALL_STATE(260)] = 1367, + [SMALL_STATE(261)] = 1440, + [SMALL_STATE(262)] = 1513, + [SMALL_STATE(263)] = 1586, + [SMALL_STATE(264)] = 1659, + [SMALL_STATE(265)] = 1727, + [SMALL_STATE(266)] = 1795, + [SMALL_STATE(267)] = 1861, + [SMALL_STATE(268)] = 1929, + [SMALL_STATE(269)] = 1995, + [SMALL_STATE(270)] = 2064, + [SMALL_STATE(271)] = 2131, + [SMALL_STATE(272)] = 2194, + [SMALL_STATE(273)] = 2257, + [SMALL_STATE(274)] = 2320, + [SMALL_STATE(275)] = 2383, + [SMALL_STATE(276)] = 2446, + [SMALL_STATE(277)] = 2509, + [SMALL_STATE(278)] = 2572, + [SMALL_STATE(279)] = 2635, + [SMALL_STATE(280)] = 2698, + [SMALL_STATE(281)] = 2765, + [SMALL_STATE(282)] = 2828, + [SMALL_STATE(283)] = 2891, + [SMALL_STATE(284)] = 2958, + [SMALL_STATE(285)] = 3021, + [SMALL_STATE(286)] = 3092, + [SMALL_STATE(287)] = 3159, + [SMALL_STATE(288)] = 3228, + [SMALL_STATE(289)] = 3295, + [SMALL_STATE(290)] = 3361, + [SMALL_STATE(291)] = 3426, + [SMALL_STATE(292)] = 3518, + [SMALL_STATE(293)] = 3610, + [SMALL_STATE(294)] = 3702, + [SMALL_STATE(295)] = 3794, + [SMALL_STATE(296)] = 3854, + [SMALL_STATE(297)] = 3914, + [SMALL_STATE(298)] = 3998, + [SMALL_STATE(299)] = 4076, + [SMALL_STATE(300)] = 4136, + [SMALL_STATE(301)] = 4196, + [SMALL_STATE(302)] = 4256, + [SMALL_STATE(303)] = 4344, + [SMALL_STATE(304)] = 4424, + [SMALL_STATE(305)] = 4492, + [SMALL_STATE(306)] = 4562, + [SMALL_STATE(307)] = 4626, + [SMALL_STATE(308)] = 4686, + [SMALL_STATE(309)] = 4778, + [SMALL_STATE(310)] = 4870, + [SMALL_STATE(311)] = 4930, + [SMALL_STATE(312)] = 4992, + [SMALL_STATE(313)] = 5052, + [SMALL_STATE(314)] = 5112, + [SMALL_STATE(315)] = 5172, + [SMALL_STATE(316)] = 5232, + [SMALL_STATE(317)] = 5292, + [SMALL_STATE(318)] = 5352, + [SMALL_STATE(319)] = 5412, + [SMALL_STATE(320)] = 5504, + [SMALL_STATE(321)] = 5564, + [SMALL_STATE(322)] = 5624, + [SMALL_STATE(323)] = 5684, + [SMALL_STATE(324)] = 5766, + [SMALL_STATE(325)] = 5826, + [SMALL_STATE(326)] = 5886, + [SMALL_STATE(327)] = 5946, + [SMALL_STATE(328)] = 6038, + [SMALL_STATE(329)] = 6098, + [SMALL_STATE(330)] = 6158, + [SMALL_STATE(331)] = 6218, + [SMALL_STATE(332)] = 6282, + [SMALL_STATE(333)] = 6342, + [SMALL_STATE(334)] = 6402, + [SMALL_STATE(335)] = 6462, + [SMALL_STATE(336)] = 6553, + [SMALL_STATE(337)] = 6644, + [SMALL_STATE(338)] = 6735, + [SMALL_STATE(339)] = 6826, + [SMALL_STATE(340)] = 6917, + [SMALL_STATE(341)] = 7008, + [SMALL_STATE(342)] = 7099, + [SMALL_STATE(343)] = 7190, + [SMALL_STATE(344)] = 7280, + [SMALL_STATE(345)] = 7336, + [SMALL_STATE(346)] = 7394, + [SMALL_STATE(347)] = 7450, + [SMALL_STATE(348)] = 7518, + [SMALL_STATE(349)] = 7608, + [SMALL_STATE(350)] = 7698, + [SMALL_STATE(351)] = 7756, + [SMALL_STATE(352)] = 7810, + [SMALL_STATE(353)] = 7900, + [SMALL_STATE(354)] = 7990, + [SMALL_STATE(355)] = 8041, + [SMALL_STATE(356)] = 8095, + [SMALL_STATE(357)] = 8147, + [SMALL_STATE(358)] = 8201, + [SMALL_STATE(359)] = 8253, + [SMALL_STATE(360)] = 8307, + [SMALL_STATE(361)] = 8364, + [SMALL_STATE(362)] = 8433, + [SMALL_STATE(363)] = 8486, + [SMALL_STATE(364)] = 8535, + [SMALL_STATE(365)] = 8614, + [SMALL_STATE(366)] = 8663, + [SMALL_STATE(367)] = 8716, + [SMALL_STATE(368)] = 8769, + [SMALL_STATE(369)] = 8818, + [SMALL_STATE(370)] = 8867, + [SMALL_STATE(371)] = 8922, + [SMALL_STATE(372)] = 8977, + [SMALL_STATE(373)] = 9026, + [SMALL_STATE(374)] = 9075, + [SMALL_STATE(375)] = 9124, + [SMALL_STATE(376)] = 9173, + [SMALL_STATE(377)] = 9222, + [SMALL_STATE(378)] = 9275, + [SMALL_STATE(379)] = 9324, + [SMALL_STATE(380)] = 9395, + [SMALL_STATE(381)] = 9474, + [SMALL_STATE(382)] = 9553, + [SMALL_STATE(383)] = 9620, + [SMALL_STATE(384)] = 9673, + [SMALL_STATE(385)] = 9722, + [SMALL_STATE(386)] = 9787, + [SMALL_STATE(387)] = 9840, + [SMALL_STATE(388)] = 9919, + [SMALL_STATE(389)] = 9994, + [SMALL_STATE(390)] = 10073, + [SMALL_STATE(391)] = 10152, + [SMALL_STATE(392)] = 10231, + [SMALL_STATE(393)] = 10288, + [SMALL_STATE(394)] = 10337, + [SMALL_STATE(395)] = 10396, + [SMALL_STATE(396)] = 10449, + [SMALL_STATE(397)] = 10528, + [SMALL_STATE(398)] = 10580, + [SMALL_STATE(399)] = 10628, + [SMALL_STATE(400)] = 10680, [SMALL_STATE(401)] = 10728, [SMALL_STATE(402)] = 10779, - [SMALL_STATE(403)] = 10860, - [SMALL_STATE(404)] = 10911, - [SMALL_STATE(405)] = 10992, - [SMALL_STATE(406)] = 11069, - [SMALL_STATE(407)] = 11118, - [SMALL_STATE(408)] = 11195, - [SMALL_STATE(409)] = 11276, - [SMALL_STATE(410)] = 11353, - [SMALL_STATE(411)] = 11434, - [SMALL_STATE(412)] = 11515, - [SMALL_STATE(413)] = 11561, - [SMALL_STATE(414)] = 11607, - [SMALL_STATE(415)] = 11653, - [SMALL_STATE(416)] = 11699, - [SMALL_STATE(417)] = 11761, - [SMALL_STATE(418)] = 11833, - [SMALL_STATE(419)] = 11883, - [SMALL_STATE(420)] = 11929, - [SMALL_STATE(421)] = 11979, - [SMALL_STATE(422)] = 12025, - [SMALL_STATE(423)] = 12071, - [SMALL_STATE(424)] = 12119, - [SMALL_STATE(425)] = 12173, - [SMALL_STATE(426)] = 12249, - [SMALL_STATE(427)] = 12325, - [SMALL_STATE(428)] = 12381, - [SMALL_STATE(429)] = 12431, - [SMALL_STATE(430)] = 12507, - [SMALL_STATE(431)] = 12553, - [SMALL_STATE(432)] = 12599, - [SMALL_STATE(433)] = 12675, - [SMALL_STATE(434)] = 12721, - [SMALL_STATE(435)] = 12767, - [SMALL_STATE(436)] = 12813, - [SMALL_STATE(437)] = 12889, - [SMALL_STATE(438)] = 12935, - [SMALL_STATE(439)] = 12981, - [SMALL_STATE(440)] = 13047, - [SMALL_STATE(441)] = 13123, - [SMALL_STATE(442)] = 13199, - [SMALL_STATE(443)] = 13245, - [SMALL_STATE(444)] = 13321, - [SMALL_STATE(445)] = 13367, - [SMALL_STATE(446)] = 13435, - [SMALL_STATE(447)] = 13485, - [SMALL_STATE(448)] = 13531, - [SMALL_STATE(449)] = 13577, - [SMALL_STATE(450)] = 13623, - [SMALL_STATE(451)] = 13669, - [SMALL_STATE(452)] = 13719, - [SMALL_STATE(453)] = 13765, - [SMALL_STATE(454)] = 13815, - [SMALL_STATE(455)] = 13861, - [SMALL_STATE(456)] = 13907, - [SMALL_STATE(457)] = 13953, - [SMALL_STATE(458)] = 13999, - [SMALL_STATE(459)] = 14045, - [SMALL_STATE(460)] = 14091, - [SMALL_STATE(461)] = 14137, - [SMALL_STATE(462)] = 14183, - [SMALL_STATE(463)] = 14229, - [SMALL_STATE(464)] = 14275, - [SMALL_STATE(465)] = 14325, - [SMALL_STATE(466)] = 14389, - [SMALL_STATE(467)] = 14435, - [SMALL_STATE(468)] = 14481, - [SMALL_STATE(469)] = 14527, - [SMALL_STATE(470)] = 14573, - [SMALL_STATE(471)] = 14619, - [SMALL_STATE(472)] = 14695, - [SMALL_STATE(473)] = 14770, - [SMALL_STATE(474)] = 14845, - [SMALL_STATE(475)] = 14920, - [SMALL_STATE(476)] = 14995, - [SMALL_STATE(477)] = 15070, - [SMALL_STATE(478)] = 15145, - [SMALL_STATE(479)] = 15220, - [SMALL_STATE(480)] = 15295, - [SMALL_STATE(481)] = 15370, - [SMALL_STATE(482)] = 15445, - [SMALL_STATE(483)] = 15520, - [SMALL_STATE(484)] = 15595, - [SMALL_STATE(485)] = 15670, - [SMALL_STATE(486)] = 15745, - [SMALL_STATE(487)] = 15820, - [SMALL_STATE(488)] = 15895, - [SMALL_STATE(489)] = 15970, - [SMALL_STATE(490)] = 16045, - [SMALL_STATE(491)] = 16120, - [SMALL_STATE(492)] = 16195, - [SMALL_STATE(493)] = 16270, - [SMALL_STATE(494)] = 16345, - [SMALL_STATE(495)] = 16420, - [SMALL_STATE(496)] = 16495, - [SMALL_STATE(497)] = 16570, - [SMALL_STATE(498)] = 16645, - [SMALL_STATE(499)] = 16720, - [SMALL_STATE(500)] = 16795, - [SMALL_STATE(501)] = 16870, - [SMALL_STATE(502)] = 16945, - [SMALL_STATE(503)] = 17020, - [SMALL_STATE(504)] = 17095, - [SMALL_STATE(505)] = 17170, - [SMALL_STATE(506)] = 17245, - [SMALL_STATE(507)] = 17320, - [SMALL_STATE(508)] = 17395, - [SMALL_STATE(509)] = 17470, - [SMALL_STATE(510)] = 17542, - [SMALL_STATE(511)] = 17611, - [SMALL_STATE(512)] = 17680, - [SMALL_STATE(513)] = 17749, - [SMALL_STATE(514)] = 17813, - [SMALL_STATE(515)] = 17857, - [SMALL_STATE(516)] = 17923, - [SMALL_STATE(517)] = 17987, - [SMALL_STATE(518)] = 18053, - [SMALL_STATE(519)] = 18117, - [SMALL_STATE(520)] = 18181, - [SMALL_STATE(521)] = 18242, - [SMALL_STATE(522)] = 18283, - [SMALL_STATE(523)] = 18336, - [SMALL_STATE(524)] = 18389, - [SMALL_STATE(525)] = 18450, - [SMALL_STATE(526)] = 18511, - [SMALL_STATE(527)] = 18572, - [SMALL_STATE(528)] = 18633, - [SMALL_STATE(529)] = 18686, - [SMALL_STATE(530)] = 18747, - [SMALL_STATE(531)] = 18794, - [SMALL_STATE(532)] = 18847, - [SMALL_STATE(533)] = 18888, - [SMALL_STATE(534)] = 18932, - [SMALL_STATE(535)] = 18990, - [SMALL_STATE(536)] = 19048, - [SMALL_STATE(537)] = 19106, - [SMALL_STATE(538)] = 19146, - [SMALL_STATE(539)] = 19204, - [SMALL_STATE(540)] = 19262, - [SMALL_STATE(541)] = 19320, - [SMALL_STATE(542)] = 19378, - [SMALL_STATE(543)] = 19422, - [SMALL_STATE(544)] = 19480, - [SMALL_STATE(545)] = 19538, - [SMALL_STATE(546)] = 19596, - [SMALL_STATE(547)] = 19654, - [SMALL_STATE(548)] = 19712, - [SMALL_STATE(549)] = 19760, - [SMALL_STATE(550)] = 19818, - [SMALL_STATE(551)] = 19862, - [SMALL_STATE(552)] = 19908, - [SMALL_STATE(553)] = 19966, - [SMALL_STATE(554)] = 20024, - [SMALL_STATE(555)] = 20082, - [SMALL_STATE(556)] = 20140, - [SMALL_STATE(557)] = 20198, - [SMALL_STATE(558)] = 20256, - [SMALL_STATE(559)] = 20296, - [SMALL_STATE(560)] = 20354, - [SMALL_STATE(561)] = 20402, - [SMALL_STATE(562)] = 20460, - [SMALL_STATE(563)] = 20518, - [SMALL_STATE(564)] = 20576, - [SMALL_STATE(565)] = 20634, - [SMALL_STATE(566)] = 20692, - [SMALL_STATE(567)] = 20750, - [SMALL_STATE(568)] = 20808, - [SMALL_STATE(569)] = 20848, - [SMALL_STATE(570)] = 20888, - [SMALL_STATE(571)] = 20946, - [SMALL_STATE(572)] = 21004, - [SMALL_STATE(573)] = 21062, - [SMALL_STATE(574)] = 21120, - [SMALL_STATE(575)] = 21168, - [SMALL_STATE(576)] = 21226, - [SMALL_STATE(577)] = 21284, - [SMALL_STATE(578)] = 21342, - [SMALL_STATE(579)] = 21400, - [SMALL_STATE(580)] = 21458, - [SMALL_STATE(581)] = 21516, - [SMALL_STATE(582)] = 21574, - [SMALL_STATE(583)] = 21632, - [SMALL_STATE(584)] = 21690, - [SMALL_STATE(585)] = 21748, - [SMALL_STATE(586)] = 21806, - [SMALL_STATE(587)] = 21864, - [SMALL_STATE(588)] = 21922, - [SMALL_STATE(589)] = 21970, - [SMALL_STATE(590)] = 22028, - [SMALL_STATE(591)] = 22086, - [SMALL_STATE(592)] = 22144, - [SMALL_STATE(593)] = 22202, - [SMALL_STATE(594)] = 22260, - [SMALL_STATE(595)] = 22318, - [SMALL_STATE(596)] = 22361, - [SMALL_STATE(597)] = 22404, - [SMALL_STATE(598)] = 22443, - [SMALL_STATE(599)] = 22482, - [SMALL_STATE(600)] = 22529, - [SMALL_STATE(601)] = 22568, - [SMALL_STATE(602)] = 22613, - [SMALL_STATE(603)] = 22656, - [SMALL_STATE(604)] = 22701, - [SMALL_STATE(605)] = 22746, - [SMALL_STATE(606)] = 22793, - [SMALL_STATE(607)] = 22840, - [SMALL_STATE(608)] = 22879, - [SMALL_STATE(609)] = 22924, - [SMALL_STATE(610)] = 22967, - [SMALL_STATE(611)] = 23006, - [SMALL_STATE(612)] = 23045, - [SMALL_STATE(613)] = 23092, - [SMALL_STATE(614)] = 23131, - [SMALL_STATE(615)] = 23176, - [SMALL_STATE(616)] = 23220, - [SMALL_STATE(617)] = 23260, - [SMALL_STATE(618)] = 23304, - [SMALL_STATE(619)] = 23344, - [SMALL_STATE(620)] = 23386, - [SMALL_STATE(621)] = 23428, - [SMALL_STATE(622)] = 23470, - [SMALL_STATE(623)] = 23526, - [SMALL_STATE(624)] = 23582, - [SMALL_STATE(625)] = 23626, - [SMALL_STATE(626)] = 23670, - [SMALL_STATE(627)] = 23710, - [SMALL_STATE(628)] = 23754, - [SMALL_STATE(629)] = 23796, - [SMALL_STATE(630)] = 23852, - [SMALL_STATE(631)] = 23892, - [SMALL_STATE(632)] = 23929, - [SMALL_STATE(633)] = 23966, - [SMALL_STATE(634)] = 24003, - [SMALL_STATE(635)] = 24044, - [SMALL_STATE(636)] = 24083, - [SMALL_STATE(637)] = 24120, - [SMALL_STATE(638)] = 24157, - [SMALL_STATE(639)] = 24198, - [SMALL_STATE(640)] = 24235, - [SMALL_STATE(641)] = 24272, - [SMALL_STATE(642)] = 24313, - [SMALL_STATE(643)] = 24354, - [SMALL_STATE(644)] = 24391, - [SMALL_STATE(645)] = 24428, - [SMALL_STATE(646)] = 24467, - [SMALL_STATE(647)] = 24504, - [SMALL_STATE(648)] = 24541, - [SMALL_STATE(649)] = 24580, - [SMALL_STATE(650)] = 24621, - [SMALL_STATE(651)] = 24658, - [SMALL_STATE(652)] = 24695, - [SMALL_STATE(653)] = 24745, - [SMALL_STATE(654)] = 24781, - [SMALL_STATE(655)] = 24831, - [SMALL_STATE(656)] = 24867, - [SMALL_STATE(657)] = 24903, - [SMALL_STATE(658)] = 24953, - [SMALL_STATE(659)] = 24988, - [SMALL_STATE(660)] = 25023, - [SMALL_STATE(661)] = 25058, - [SMALL_STATE(662)] = 25093, - [SMALL_STATE(663)] = 25140, - [SMALL_STATE(664)] = 25175, - [SMALL_STATE(665)] = 25212, - [SMALL_STATE(666)] = 25247, - [SMALL_STATE(667)] = 25282, - [SMALL_STATE(668)] = 25329, - [SMALL_STATE(669)] = 25364, - [SMALL_STATE(670)] = 25411, - [SMALL_STATE(671)] = 25446, - [SMALL_STATE(672)] = 25481, - [SMALL_STATE(673)] = 25525, - [SMALL_STATE(674)] = 25569, - [SMALL_STATE(675)] = 25613, - [SMALL_STATE(676)] = 25646, - [SMALL_STATE(677)] = 25677, - [SMALL_STATE(678)] = 25708, - [SMALL_STATE(679)] = 25746, - [SMALL_STATE(680)] = 25784, - [SMALL_STATE(681)] = 25822, - [SMALL_STATE(682)] = 25860, - [SMALL_STATE(683)] = 25891, - [SMALL_STATE(684)] = 25927, - [SMALL_STATE(685)] = 25963, - [SMALL_STATE(686)] = 25995, - [SMALL_STATE(687)] = 26031, - [SMALL_STATE(688)] = 26067, - [SMALL_STATE(689)] = 26103, - [SMALL_STATE(690)] = 26139, - [SMALL_STATE(691)] = 26175, - [SMALL_STATE(692)] = 26211, - [SMALL_STATE(693)] = 26247, - [SMALL_STATE(694)] = 26283, - [SMALL_STATE(695)] = 26319, - [SMALL_STATE(696)] = 26355, - [SMALL_STATE(697)] = 26391, - [SMALL_STATE(698)] = 26427, - [SMALL_STATE(699)] = 26463, - [SMALL_STATE(700)] = 26499, - [SMALL_STATE(701)] = 26535, - [SMALL_STATE(702)] = 26571, - [SMALL_STATE(703)] = 26607, - [SMALL_STATE(704)] = 26643, - [SMALL_STATE(705)] = 26679, - [SMALL_STATE(706)] = 26715, - [SMALL_STATE(707)] = 26751, - [SMALL_STATE(708)] = 26787, - [SMALL_STATE(709)] = 26823, - [SMALL_STATE(710)] = 26859, - [SMALL_STATE(711)] = 26895, - [SMALL_STATE(712)] = 26931, - [SMALL_STATE(713)] = 26967, - [SMALL_STATE(714)] = 27003, - [SMALL_STATE(715)] = 27039, - [SMALL_STATE(716)] = 27075, - [SMALL_STATE(717)] = 27111, - [SMALL_STATE(718)] = 27147, - [SMALL_STATE(719)] = 27183, - [SMALL_STATE(720)] = 27219, - [SMALL_STATE(721)] = 27255, - [SMALL_STATE(722)] = 27291, - [SMALL_STATE(723)] = 27327, - [SMALL_STATE(724)] = 27363, - [SMALL_STATE(725)] = 27399, - [SMALL_STATE(726)] = 27435, - [SMALL_STATE(727)] = 27471, - [SMALL_STATE(728)] = 27507, - [SMALL_STATE(729)] = 27541, - [SMALL_STATE(730)] = 27575, - [SMALL_STATE(731)] = 27609, - [SMALL_STATE(732)] = 27643, - [SMALL_STATE(733)] = 27677, - [SMALL_STATE(734)] = 27711, - [SMALL_STATE(735)] = 27745, - [SMALL_STATE(736)] = 27779, - [SMALL_STATE(737)] = 27813, - [SMALL_STATE(738)] = 27847, - [SMALL_STATE(739)] = 27881, - [SMALL_STATE(740)] = 27915, - [SMALL_STATE(741)] = 27949, - [SMALL_STATE(742)] = 27983, - [SMALL_STATE(743)] = 28019, - [SMALL_STATE(744)] = 28055, - [SMALL_STATE(745)] = 28091, - [SMALL_STATE(746)] = 28127, - [SMALL_STATE(747)] = 28163, - [SMALL_STATE(748)] = 28199, - [SMALL_STATE(749)] = 28235, - [SMALL_STATE(750)] = 28271, - [SMALL_STATE(751)] = 28307, - [SMALL_STATE(752)] = 28343, - [SMALL_STATE(753)] = 28379, - [SMALL_STATE(754)] = 28415, - [SMALL_STATE(755)] = 28451, - [SMALL_STATE(756)] = 28487, - [SMALL_STATE(757)] = 28523, - [SMALL_STATE(758)] = 28559, - [SMALL_STATE(759)] = 28595, - [SMALL_STATE(760)] = 28631, - [SMALL_STATE(761)] = 28667, - [SMALL_STATE(762)] = 28703, - [SMALL_STATE(763)] = 28739, - [SMALL_STATE(764)] = 28775, - [SMALL_STATE(765)] = 28811, - [SMALL_STATE(766)] = 28847, - [SMALL_STATE(767)] = 28883, - [SMALL_STATE(768)] = 28919, - [SMALL_STATE(769)] = 28955, - [SMALL_STATE(770)] = 28991, - [SMALL_STATE(771)] = 29027, - [SMALL_STATE(772)] = 29063, - [SMALL_STATE(773)] = 29099, - [SMALL_STATE(774)] = 29135, - [SMALL_STATE(775)] = 29171, - [SMALL_STATE(776)] = 29207, - [SMALL_STATE(777)] = 29243, - [SMALL_STATE(778)] = 29279, - [SMALL_STATE(779)] = 29315, - [SMALL_STATE(780)] = 29351, - [SMALL_STATE(781)] = 29387, - [SMALL_STATE(782)] = 29423, - [SMALL_STATE(783)] = 29448, - [SMALL_STATE(784)] = 29483, - [SMALL_STATE(785)] = 29518, - [SMALL_STATE(786)] = 29553, - [SMALL_STATE(787)] = 29588, - [SMALL_STATE(788)] = 29623, - [SMALL_STATE(789)] = 29658, - [SMALL_STATE(790)] = 29693, - [SMALL_STATE(791)] = 29728, - [SMALL_STATE(792)] = 29759, - [SMALL_STATE(793)] = 29794, - [SMALL_STATE(794)] = 29829, - [SMALL_STATE(795)] = 29864, - [SMALL_STATE(796)] = 29899, - [SMALL_STATE(797)] = 29928, - [SMALL_STATE(798)] = 29963, - [SMALL_STATE(799)] = 29998, - [SMALL_STATE(800)] = 30033, - [SMALL_STATE(801)] = 30064, - [SMALL_STATE(802)] = 30096, - [SMALL_STATE(803)] = 30120, - [SMALL_STATE(804)] = 30152, - [SMALL_STATE(805)] = 30184, - [SMALL_STATE(806)] = 30216, - [SMALL_STATE(807)] = 30248, - [SMALL_STATE(808)] = 30280, - [SMALL_STATE(809)] = 30312, - [SMALL_STATE(810)] = 30344, - [SMALL_STATE(811)] = 30374, - [SMALL_STATE(812)] = 30404, - [SMALL_STATE(813)] = 30436, - [SMALL_STATE(814)] = 30468, - [SMALL_STATE(815)] = 30500, - [SMALL_STATE(816)] = 30532, - [SMALL_STATE(817)] = 30564, - [SMALL_STATE(818)] = 30596, - [SMALL_STATE(819)] = 30628, - [SMALL_STATE(820)] = 30660, - [SMALL_STATE(821)] = 30692, - [SMALL_STATE(822)] = 30724, - [SMALL_STATE(823)] = 30756, - [SMALL_STATE(824)] = 30788, - [SMALL_STATE(825)] = 30820, - [SMALL_STATE(826)] = 30852, - [SMALL_STATE(827)] = 30884, - [SMALL_STATE(828)] = 30907, - [SMALL_STATE(829)] = 30930, - [SMALL_STATE(830)] = 30957, - [SMALL_STATE(831)] = 30980, - [SMALL_STATE(832)] = 31003, - [SMALL_STATE(833)] = 31026, - [SMALL_STATE(834)] = 31049, - [SMALL_STATE(835)] = 31072, - [SMALL_STATE(836)] = 31095, - [SMALL_STATE(837)] = 31118, - [SMALL_STATE(838)] = 31141, - [SMALL_STATE(839)] = 31164, - [SMALL_STATE(840)] = 31187, - [SMALL_STATE(841)] = 31210, - [SMALL_STATE(842)] = 31233, - [SMALL_STATE(843)] = 31256, - [SMALL_STATE(844)] = 31279, - [SMALL_STATE(845)] = 31302, - [SMALL_STATE(846)] = 31325, - [SMALL_STATE(847)] = 31348, - [SMALL_STATE(848)] = 31377, - [SMALL_STATE(849)] = 31400, - [SMALL_STATE(850)] = 31423, - [SMALL_STATE(851)] = 31446, - [SMALL_STATE(852)] = 31469, - [SMALL_STATE(853)] = 31492, - [SMALL_STATE(854)] = 31519, - [SMALL_STATE(855)] = 31544, - [SMALL_STATE(856)] = 31567, - [SMALL_STATE(857)] = 31590, - [SMALL_STATE(858)] = 31613, - [SMALL_STATE(859)] = 31642, - [SMALL_STATE(860)] = 31665, - [SMALL_STATE(861)] = 31688, - [SMALL_STATE(862)] = 31711, - [SMALL_STATE(863)] = 31740, - [SMALL_STATE(864)] = 31763, - [SMALL_STATE(865)] = 31786, - [SMALL_STATE(866)] = 31809, - [SMALL_STATE(867)] = 31838, - [SMALL_STATE(868)] = 31861, - [SMALL_STATE(869)] = 31890, - [SMALL_STATE(870)] = 31913, - [SMALL_STATE(871)] = 31936, - [SMALL_STATE(872)] = 31959, - [SMALL_STATE(873)] = 31982, - [SMALL_STATE(874)] = 32005, - [SMALL_STATE(875)] = 32032, - [SMALL_STATE(876)] = 32061, - [SMALL_STATE(877)] = 32084, - [SMALL_STATE(878)] = 32107, - [SMALL_STATE(879)] = 32130, - [SMALL_STATE(880)] = 32156, - [SMALL_STATE(881)] = 32182, - [SMALL_STATE(882)] = 32208, - [SMALL_STATE(883)] = 32234, - [SMALL_STATE(884)] = 32260, - [SMALL_STATE(885)] = 32286, - [SMALL_STATE(886)] = 32310, - [SMALL_STATE(887)] = 32336, - [SMALL_STATE(888)] = 32362, - [SMALL_STATE(889)] = 32388, - [SMALL_STATE(890)] = 32414, - [SMALL_STATE(891)] = 32440, - [SMALL_STATE(892)] = 32466, - [SMALL_STATE(893)] = 32488, - [SMALL_STATE(894)] = 32510, - [SMALL_STATE(895)] = 32536, - [SMALL_STATE(896)] = 32562, - [SMALL_STATE(897)] = 32588, - [SMALL_STATE(898)] = 32614, - [SMALL_STATE(899)] = 32640, - [SMALL_STATE(900)] = 32666, - [SMALL_STATE(901)] = 32692, - [SMALL_STATE(902)] = 32718, - [SMALL_STATE(903)] = 32740, - [SMALL_STATE(904)] = 32764, - [SMALL_STATE(905)] = 32790, - [SMALL_STATE(906)] = 32816, - [SMALL_STATE(907)] = 32842, - [SMALL_STATE(908)] = 32868, - [SMALL_STATE(909)] = 32892, - [SMALL_STATE(910)] = 32916, - [SMALL_STATE(911)] = 32942, - [SMALL_STATE(912)] = 32968, - [SMALL_STATE(913)] = 32994, - [SMALL_STATE(914)] = 33020, - [SMALL_STATE(915)] = 33046, - [SMALL_STATE(916)] = 33070, - [SMALL_STATE(917)] = 33096, - [SMALL_STATE(918)] = 33122, - [SMALL_STATE(919)] = 33146, - [SMALL_STATE(920)] = 33170, - [SMALL_STATE(921)] = 33196, - [SMALL_STATE(922)] = 33222, - [SMALL_STATE(923)] = 33248, - [SMALL_STATE(924)] = 33274, - [SMALL_STATE(925)] = 33300, - [SMALL_STATE(926)] = 33326, - [SMALL_STATE(927)] = 33352, - [SMALL_STATE(928)] = 33378, - [SMALL_STATE(929)] = 33404, - [SMALL_STATE(930)] = 33428, - [SMALL_STATE(931)] = 33451, - [SMALL_STATE(932)] = 33474, - [SMALL_STATE(933)] = 33497, - [SMALL_STATE(934)] = 33520, - [SMALL_STATE(935)] = 33543, - [SMALL_STATE(936)] = 33566, - [SMALL_STATE(937)] = 33589, - [SMALL_STATE(938)] = 33610, - [SMALL_STATE(939)] = 33631, - [SMALL_STATE(940)] = 33654, - [SMALL_STATE(941)] = 33677, - [SMALL_STATE(942)] = 33700, - [SMALL_STATE(943)] = 33723, - [SMALL_STATE(944)] = 33746, - [SMALL_STATE(945)] = 33769, - [SMALL_STATE(946)] = 33792, - [SMALL_STATE(947)] = 33815, - [SMALL_STATE(948)] = 33838, - [SMALL_STATE(949)] = 33861, - [SMALL_STATE(950)] = 33884, - [SMALL_STATE(951)] = 33907, - [SMALL_STATE(952)] = 33930, - [SMALL_STATE(953)] = 33953, - [SMALL_STATE(954)] = 33976, - [SMALL_STATE(955)] = 33999, - [SMALL_STATE(956)] = 34020, - [SMALL_STATE(957)] = 34043, - [SMALL_STATE(958)] = 34063, - [SMALL_STATE(959)] = 34083, - [SMALL_STATE(960)] = 34103, - [SMALL_STATE(961)] = 34123, - [SMALL_STATE(962)] = 34143, - [SMALL_STATE(963)] = 34163, - [SMALL_STATE(964)] = 34183, - [SMALL_STATE(965)] = 34203, - [SMALL_STATE(966)] = 34223, - [SMALL_STATE(967)] = 34243, - [SMALL_STATE(968)] = 34263, - [SMALL_STATE(969)] = 34283, - [SMALL_STATE(970)] = 34303, - [SMALL_STATE(971)] = 34323, - [SMALL_STATE(972)] = 34343, - [SMALL_STATE(973)] = 34363, - [SMALL_STATE(974)] = 34383, - [SMALL_STATE(975)] = 34403, - [SMALL_STATE(976)] = 34423, - [SMALL_STATE(977)] = 34443, - [SMALL_STATE(978)] = 34463, - [SMALL_STATE(979)] = 34483, - [SMALL_STATE(980)] = 34503, - [SMALL_STATE(981)] = 34523, - [SMALL_STATE(982)] = 34543, - [SMALL_STATE(983)] = 34563, - [SMALL_STATE(984)] = 34583, - [SMALL_STATE(985)] = 34603, - [SMALL_STATE(986)] = 34623, - [SMALL_STATE(987)] = 34643, - [SMALL_STATE(988)] = 34663, - [SMALL_STATE(989)] = 34683, - [SMALL_STATE(990)] = 34703, - [SMALL_STATE(991)] = 34723, - [SMALL_STATE(992)] = 34743, - [SMALL_STATE(993)] = 34763, - [SMALL_STATE(994)] = 34783, - [SMALL_STATE(995)] = 34803, - [SMALL_STATE(996)] = 34823, - [SMALL_STATE(997)] = 34843, - [SMALL_STATE(998)] = 34863, - [SMALL_STATE(999)] = 34883, - [SMALL_STATE(1000)] = 34903, - [SMALL_STATE(1001)] = 34923, - [SMALL_STATE(1002)] = 34943, - [SMALL_STATE(1003)] = 34963, - [SMALL_STATE(1004)] = 34983, - [SMALL_STATE(1005)] = 35003, - [SMALL_STATE(1006)] = 35023, - [SMALL_STATE(1007)] = 35043, - [SMALL_STATE(1008)] = 35063, - [SMALL_STATE(1009)] = 35083, - [SMALL_STATE(1010)] = 35103, - [SMALL_STATE(1011)] = 35123, - [SMALL_STATE(1012)] = 35143, - [SMALL_STATE(1013)] = 35163, - [SMALL_STATE(1014)] = 35183, - [SMALL_STATE(1015)] = 35203, - [SMALL_STATE(1016)] = 35223, - [SMALL_STATE(1017)] = 35243, - [SMALL_STATE(1018)] = 35263, - [SMALL_STATE(1019)] = 35283, - [SMALL_STATE(1020)] = 35303, - [SMALL_STATE(1021)] = 35323, - [SMALL_STATE(1022)] = 35343, - [SMALL_STATE(1023)] = 35363, - [SMALL_STATE(1024)] = 35383, - [SMALL_STATE(1025)] = 35403, - [SMALL_STATE(1026)] = 35423, - [SMALL_STATE(1027)] = 35443, - [SMALL_STATE(1028)] = 35463, - [SMALL_STATE(1029)] = 35483, - [SMALL_STATE(1030)] = 35503, - [SMALL_STATE(1031)] = 35507, + [SMALL_STATE(403)] = 10828, + [SMALL_STATE(404)] = 10909, + [SMALL_STATE(405)] = 10984, + [SMALL_STATE(406)] = 11065, + [SMALL_STATE(407)] = 11142, + [SMALL_STATE(408)] = 11223, + [SMALL_STATE(409)] = 11300, + [SMALL_STATE(410)] = 11381, + [SMALL_STATE(411)] = 11432, + [SMALL_STATE(412)] = 11513, + [SMALL_STATE(413)] = 11564, + [SMALL_STATE(414)] = 11641, + [SMALL_STATE(415)] = 11718, + [SMALL_STATE(416)] = 11799, + [SMALL_STATE(417)] = 11880, + [SMALL_STATE(418)] = 11926, + [SMALL_STATE(419)] = 11972, + [SMALL_STATE(420)] = 12048, + [SMALL_STATE(421)] = 12124, + [SMALL_STATE(422)] = 12170, + [SMALL_STATE(423)] = 12218, + [SMALL_STATE(424)] = 12264, + [SMALL_STATE(425)] = 12326, + [SMALL_STATE(426)] = 12372, + [SMALL_STATE(427)] = 12418, + [SMALL_STATE(428)] = 12464, + [SMALL_STATE(429)] = 12536, + [SMALL_STATE(430)] = 12586, + [SMALL_STATE(431)] = 12632, + [SMALL_STATE(432)] = 12678, + [SMALL_STATE(433)] = 12742, + [SMALL_STATE(434)] = 12792, + [SMALL_STATE(435)] = 12838, + [SMALL_STATE(436)] = 12884, + [SMALL_STATE(437)] = 12930, + [SMALL_STATE(438)] = 12976, + [SMALL_STATE(439)] = 13022, + [SMALL_STATE(440)] = 13068, + [SMALL_STATE(441)] = 13114, + [SMALL_STATE(442)] = 13190, + [SMALL_STATE(443)] = 13266, + [SMALL_STATE(444)] = 13312, + [SMALL_STATE(445)] = 13388, + [SMALL_STATE(446)] = 13438, + [SMALL_STATE(447)] = 13514, + [SMALL_STATE(448)] = 13560, + [SMALL_STATE(449)] = 13606, + [SMALL_STATE(450)] = 13652, + [SMALL_STATE(451)] = 13698, + [SMALL_STATE(452)] = 13744, + [SMALL_STATE(453)] = 13790, + [SMALL_STATE(454)] = 13840, + [SMALL_STATE(455)] = 13890, + [SMALL_STATE(456)] = 13936, + [SMALL_STATE(457)] = 13986, + [SMALL_STATE(458)] = 14040, + [SMALL_STATE(459)] = 14086, + [SMALL_STATE(460)] = 14142, + [SMALL_STATE(461)] = 14188, + [SMALL_STATE(462)] = 14234, + [SMALL_STATE(463)] = 14284, + [SMALL_STATE(464)] = 14330, + [SMALL_STATE(465)] = 14406, + [SMALL_STATE(466)] = 14472, + [SMALL_STATE(467)] = 14540, + [SMALL_STATE(468)] = 14586, + [SMALL_STATE(469)] = 14632, + [SMALL_STATE(470)] = 14708, + [SMALL_STATE(471)] = 14754, + [SMALL_STATE(472)] = 14800, + [SMALL_STATE(473)] = 14876, + [SMALL_STATE(474)] = 14922, + [SMALL_STATE(475)] = 14968, + [SMALL_STATE(476)] = 15014, + [SMALL_STATE(477)] = 15060, + [SMALL_STATE(478)] = 15135, + [SMALL_STATE(479)] = 15210, + [SMALL_STATE(480)] = 15285, + [SMALL_STATE(481)] = 15360, + [SMALL_STATE(482)] = 15435, + [SMALL_STATE(483)] = 15510, + [SMALL_STATE(484)] = 15585, + [SMALL_STATE(485)] = 15660, + [SMALL_STATE(486)] = 15735, + [SMALL_STATE(487)] = 15810, + [SMALL_STATE(488)] = 15885, + [SMALL_STATE(489)] = 15960, + [SMALL_STATE(490)] = 16035, + [SMALL_STATE(491)] = 16110, + [SMALL_STATE(492)] = 16185, + [SMALL_STATE(493)] = 16260, + [SMALL_STATE(494)] = 16335, + [SMALL_STATE(495)] = 16410, + [SMALL_STATE(496)] = 16485, + [SMALL_STATE(497)] = 16560, + [SMALL_STATE(498)] = 16635, + [SMALL_STATE(499)] = 16710, + [SMALL_STATE(500)] = 16785, + [SMALL_STATE(501)] = 16860, + [SMALL_STATE(502)] = 16935, + [SMALL_STATE(503)] = 17010, + [SMALL_STATE(504)] = 17085, + [SMALL_STATE(505)] = 17160, + [SMALL_STATE(506)] = 17235, + [SMALL_STATE(507)] = 17310, + [SMALL_STATE(508)] = 17385, + [SMALL_STATE(509)] = 17460, + [SMALL_STATE(510)] = 17535, + [SMALL_STATE(511)] = 17610, + [SMALL_STATE(512)] = 17685, + [SMALL_STATE(513)] = 17760, + [SMALL_STATE(514)] = 17835, + [SMALL_STATE(515)] = 17907, + [SMALL_STATE(516)] = 17976, + [SMALL_STATE(517)] = 18045, + [SMALL_STATE(518)] = 18114, + [SMALL_STATE(519)] = 18178, + [SMALL_STATE(520)] = 18242, + [SMALL_STATE(521)] = 18286, + [SMALL_STATE(522)] = 18352, + [SMALL_STATE(523)] = 18418, + [SMALL_STATE(524)] = 18482, + [SMALL_STATE(525)] = 18546, + [SMALL_STATE(526)] = 18599, + [SMALL_STATE(527)] = 18640, + [SMALL_STATE(528)] = 18701, + [SMALL_STATE(529)] = 18762, + [SMALL_STATE(530)] = 18823, + [SMALL_STATE(531)] = 18870, + [SMALL_STATE(532)] = 18923, + [SMALL_STATE(533)] = 18964, + [SMALL_STATE(534)] = 19017, + [SMALL_STATE(535)] = 19078, + [SMALL_STATE(536)] = 19139, + [SMALL_STATE(537)] = 19200, + [SMALL_STATE(538)] = 19253, + [SMALL_STATE(539)] = 19311, + [SMALL_STATE(540)] = 19351, + [SMALL_STATE(541)] = 19395, + [SMALL_STATE(542)] = 19453, + [SMALL_STATE(543)] = 19511, + [SMALL_STATE(544)] = 19569, + [SMALL_STATE(545)] = 19627, + [SMALL_STATE(546)] = 19685, + [SMALL_STATE(547)] = 19743, + [SMALL_STATE(548)] = 19783, + [SMALL_STATE(549)] = 19841, + [SMALL_STATE(550)] = 19899, + [SMALL_STATE(551)] = 19957, + [SMALL_STATE(552)] = 20015, + [SMALL_STATE(553)] = 20063, + [SMALL_STATE(554)] = 20121, + [SMALL_STATE(555)] = 20179, + [SMALL_STATE(556)] = 20237, + [SMALL_STATE(557)] = 20277, + [SMALL_STATE(558)] = 20335, + [SMALL_STATE(559)] = 20393, + [SMALL_STATE(560)] = 20451, + [SMALL_STATE(561)] = 20509, + [SMALL_STATE(562)] = 20567, + [SMALL_STATE(563)] = 20611, + [SMALL_STATE(564)] = 20659, + [SMALL_STATE(565)] = 20717, + [SMALL_STATE(566)] = 20775, + [SMALL_STATE(567)] = 20833, + [SMALL_STATE(568)] = 20891, + [SMALL_STATE(569)] = 20949, + [SMALL_STATE(570)] = 21007, + [SMALL_STATE(571)] = 21065, + [SMALL_STATE(572)] = 21113, + [SMALL_STATE(573)] = 21171, + [SMALL_STATE(574)] = 21229, + [SMALL_STATE(575)] = 21287, + [SMALL_STATE(576)] = 21345, + [SMALL_STATE(577)] = 21403, + [SMALL_STATE(578)] = 21461, + [SMALL_STATE(579)] = 21519, + [SMALL_STATE(580)] = 21577, + [SMALL_STATE(581)] = 21635, + [SMALL_STATE(582)] = 21693, + [SMALL_STATE(583)] = 21751, + [SMALL_STATE(584)] = 21791, + [SMALL_STATE(585)] = 21849, + [SMALL_STATE(586)] = 21907, + [SMALL_STATE(587)] = 21965, + [SMALL_STATE(588)] = 22023, + [SMALL_STATE(589)] = 22071, + [SMALL_STATE(590)] = 22129, + [SMALL_STATE(591)] = 22187, + [SMALL_STATE(592)] = 22245, + [SMALL_STATE(593)] = 22303, + [SMALL_STATE(594)] = 22361, + [SMALL_STATE(595)] = 22419, + [SMALL_STATE(596)] = 22477, + [SMALL_STATE(597)] = 22535, + [SMALL_STATE(598)] = 22581, + [SMALL_STATE(599)] = 22639, + [SMALL_STATE(600)] = 22683, + [SMALL_STATE(601)] = 22722, + [SMALL_STATE(602)] = 22769, + [SMALL_STATE(603)] = 22814, + [SMALL_STATE(604)] = 22853, + [SMALL_STATE(605)] = 22900, + [SMALL_STATE(606)] = 22945, + [SMALL_STATE(607)] = 22988, + [SMALL_STATE(608)] = 23033, + [SMALL_STATE(609)] = 23078, + [SMALL_STATE(610)] = 23121, + [SMALL_STATE(611)] = 23168, + [SMALL_STATE(612)] = 23207, + [SMALL_STATE(613)] = 23246, + [SMALL_STATE(614)] = 23285, + [SMALL_STATE(615)] = 23328, + [SMALL_STATE(616)] = 23367, + [SMALL_STATE(617)] = 23406, + [SMALL_STATE(618)] = 23449, + [SMALL_STATE(619)] = 23496, + [SMALL_STATE(620)] = 23541, + [SMALL_STATE(621)] = 23585, + [SMALL_STATE(622)] = 23625, + [SMALL_STATE(623)] = 23665, + [SMALL_STATE(624)] = 23721, + [SMALL_STATE(625)] = 23765, + [SMALL_STATE(626)] = 23807, + [SMALL_STATE(627)] = 23851, + [SMALL_STATE(628)] = 23895, + [SMALL_STATE(629)] = 23937, + [SMALL_STATE(630)] = 23981, + [SMALL_STATE(631)] = 24037, + [SMALL_STATE(632)] = 24079, + [SMALL_STATE(633)] = 24135, + [SMALL_STATE(634)] = 24175, + [SMALL_STATE(635)] = 24217, + [SMALL_STATE(636)] = 24257, + [SMALL_STATE(637)] = 24294, + [SMALL_STATE(638)] = 24331, + [SMALL_STATE(639)] = 24372, + [SMALL_STATE(640)] = 24411, + [SMALL_STATE(641)] = 24448, + [SMALL_STATE(642)] = 24485, + [SMALL_STATE(643)] = 24522, + [SMALL_STATE(644)] = 24559, + [SMALL_STATE(645)] = 24596, + [SMALL_STATE(646)] = 24633, + [SMALL_STATE(647)] = 24674, + [SMALL_STATE(648)] = 24711, + [SMALL_STATE(649)] = 24750, + [SMALL_STATE(650)] = 24787, + [SMALL_STATE(651)] = 24828, + [SMALL_STATE(652)] = 24869, + [SMALL_STATE(653)] = 24908, + [SMALL_STATE(654)] = 24945, + [SMALL_STATE(655)] = 24982, + [SMALL_STATE(656)] = 25019, + [SMALL_STATE(657)] = 25060, + [SMALL_STATE(658)] = 25096, + [SMALL_STATE(659)] = 25146, + [SMALL_STATE(660)] = 25182, + [SMALL_STATE(661)] = 25232, + [SMALL_STATE(662)] = 25282, + [SMALL_STATE(663)] = 25318, + [SMALL_STATE(664)] = 25353, + [SMALL_STATE(665)] = 25400, + [SMALL_STATE(666)] = 25437, + [SMALL_STATE(667)] = 25472, + [SMALL_STATE(668)] = 25519, + [SMALL_STATE(669)] = 25554, + [SMALL_STATE(670)] = 25589, + [SMALL_STATE(671)] = 25624, + [SMALL_STATE(672)] = 25659, + [SMALL_STATE(673)] = 25694, + [SMALL_STATE(674)] = 25729, + [SMALL_STATE(675)] = 25776, + [SMALL_STATE(676)] = 25811, + [SMALL_STATE(677)] = 25846, + [SMALL_STATE(678)] = 25890, + [SMALL_STATE(679)] = 25934, + [SMALL_STATE(680)] = 25978, + [SMALL_STATE(681)] = 26009, + [SMALL_STATE(682)] = 26040, + [SMALL_STATE(683)] = 26073, + [SMALL_STATE(684)] = 26111, + [SMALL_STATE(685)] = 26149, + [SMALL_STATE(686)] = 26187, + [SMALL_STATE(687)] = 26225, + [SMALL_STATE(688)] = 26256, + [SMALL_STATE(689)] = 26292, + [SMALL_STATE(690)] = 26328, + [SMALL_STATE(691)] = 26360, + [SMALL_STATE(692)] = 26396, + [SMALL_STATE(693)] = 26432, + [SMALL_STATE(694)] = 26468, + [SMALL_STATE(695)] = 26504, + [SMALL_STATE(696)] = 26540, + [SMALL_STATE(697)] = 26576, + [SMALL_STATE(698)] = 26612, + [SMALL_STATE(699)] = 26648, + [SMALL_STATE(700)] = 26684, + [SMALL_STATE(701)] = 26720, + [SMALL_STATE(702)] = 26756, + [SMALL_STATE(703)] = 26792, + [SMALL_STATE(704)] = 26828, + [SMALL_STATE(705)] = 26864, + [SMALL_STATE(706)] = 26900, + [SMALL_STATE(707)] = 26936, + [SMALL_STATE(708)] = 26972, + [SMALL_STATE(709)] = 27008, + [SMALL_STATE(710)] = 27044, + [SMALL_STATE(711)] = 27080, + [SMALL_STATE(712)] = 27116, + [SMALL_STATE(713)] = 27152, + [SMALL_STATE(714)] = 27188, + [SMALL_STATE(715)] = 27224, + [SMALL_STATE(716)] = 27260, + [SMALL_STATE(717)] = 27296, + [SMALL_STATE(718)] = 27332, + [SMALL_STATE(719)] = 27368, + [SMALL_STATE(720)] = 27404, + [SMALL_STATE(721)] = 27440, + [SMALL_STATE(722)] = 27476, + [SMALL_STATE(723)] = 27512, + [SMALL_STATE(724)] = 27548, + [SMALL_STATE(725)] = 27584, + [SMALL_STATE(726)] = 27620, + [SMALL_STATE(727)] = 27656, + [SMALL_STATE(728)] = 27692, + [SMALL_STATE(729)] = 27728, + [SMALL_STATE(730)] = 27764, + [SMALL_STATE(731)] = 27800, + [SMALL_STATE(732)] = 27836, + [SMALL_STATE(733)] = 27872, + [SMALL_STATE(734)] = 27906, + [SMALL_STATE(735)] = 27940, + [SMALL_STATE(736)] = 27974, + [SMALL_STATE(737)] = 28008, + [SMALL_STATE(738)] = 28042, + [SMALL_STATE(739)] = 28076, + [SMALL_STATE(740)] = 28110, + [SMALL_STATE(741)] = 28144, + [SMALL_STATE(742)] = 28178, + [SMALL_STATE(743)] = 28212, + [SMALL_STATE(744)] = 28246, + [SMALL_STATE(745)] = 28280, + [SMALL_STATE(746)] = 28314, + [SMALL_STATE(747)] = 28348, + [SMALL_STATE(748)] = 28384, + [SMALL_STATE(749)] = 28420, + [SMALL_STATE(750)] = 28456, + [SMALL_STATE(751)] = 28492, + [SMALL_STATE(752)] = 28528, + [SMALL_STATE(753)] = 28564, + [SMALL_STATE(754)] = 28600, + [SMALL_STATE(755)] = 28636, + [SMALL_STATE(756)] = 28672, + [SMALL_STATE(757)] = 28708, + [SMALL_STATE(758)] = 28744, + [SMALL_STATE(759)] = 28780, + [SMALL_STATE(760)] = 28816, + [SMALL_STATE(761)] = 28852, + [SMALL_STATE(762)] = 28888, + [SMALL_STATE(763)] = 28924, + [SMALL_STATE(764)] = 28960, + [SMALL_STATE(765)] = 28996, + [SMALL_STATE(766)] = 29032, + [SMALL_STATE(767)] = 29068, + [SMALL_STATE(768)] = 29104, + [SMALL_STATE(769)] = 29140, + [SMALL_STATE(770)] = 29176, + [SMALL_STATE(771)] = 29212, + [SMALL_STATE(772)] = 29248, + [SMALL_STATE(773)] = 29284, + [SMALL_STATE(774)] = 29320, + [SMALL_STATE(775)] = 29356, + [SMALL_STATE(776)] = 29392, + [SMALL_STATE(777)] = 29428, + [SMALL_STATE(778)] = 29464, + [SMALL_STATE(779)] = 29500, + [SMALL_STATE(780)] = 29536, + [SMALL_STATE(781)] = 29572, + [SMALL_STATE(782)] = 29608, + [SMALL_STATE(783)] = 29644, + [SMALL_STATE(784)] = 29680, + [SMALL_STATE(785)] = 29716, + [SMALL_STATE(786)] = 29752, + [SMALL_STATE(787)] = 29788, + [SMALL_STATE(788)] = 29813, + [SMALL_STATE(789)] = 29848, + [SMALL_STATE(790)] = 29883, + [SMALL_STATE(791)] = 29918, + [SMALL_STATE(792)] = 29953, + [SMALL_STATE(793)] = 29988, + [SMALL_STATE(794)] = 30023, + [SMALL_STATE(795)] = 30058, + [SMALL_STATE(796)] = 30093, + [SMALL_STATE(797)] = 30124, + [SMALL_STATE(798)] = 30159, + [SMALL_STATE(799)] = 30194, + [SMALL_STATE(800)] = 30229, + [SMALL_STATE(801)] = 30264, + [SMALL_STATE(802)] = 30293, + [SMALL_STATE(803)] = 30328, + [SMALL_STATE(804)] = 30363, + [SMALL_STATE(805)] = 30398, + [SMALL_STATE(806)] = 30429, + [SMALL_STATE(807)] = 30461, + [SMALL_STATE(808)] = 30485, + [SMALL_STATE(809)] = 30517, + [SMALL_STATE(810)] = 30549, + [SMALL_STATE(811)] = 30581, + [SMALL_STATE(812)] = 30613, + [SMALL_STATE(813)] = 30645, + [SMALL_STATE(814)] = 30677, + [SMALL_STATE(815)] = 30709, + [SMALL_STATE(816)] = 30739, + [SMALL_STATE(817)] = 30769, + [SMALL_STATE(818)] = 30801, + [SMALL_STATE(819)] = 30833, + [SMALL_STATE(820)] = 30865, + [SMALL_STATE(821)] = 30897, + [SMALL_STATE(822)] = 30929, + [SMALL_STATE(823)] = 30961, + [SMALL_STATE(824)] = 30993, + [SMALL_STATE(825)] = 31025, + [SMALL_STATE(826)] = 31057, + [SMALL_STATE(827)] = 31089, + [SMALL_STATE(828)] = 31121, + [SMALL_STATE(829)] = 31153, + [SMALL_STATE(830)] = 31185, + [SMALL_STATE(831)] = 31217, + [SMALL_STATE(832)] = 31249, + [SMALL_STATE(833)] = 31272, + [SMALL_STATE(834)] = 31295, + [SMALL_STATE(835)] = 31322, + [SMALL_STATE(836)] = 31345, + [SMALL_STATE(837)] = 31368, + [SMALL_STATE(838)] = 31391, + [SMALL_STATE(839)] = 31414, + [SMALL_STATE(840)] = 31437, + [SMALL_STATE(841)] = 31460, + [SMALL_STATE(842)] = 31483, + [SMALL_STATE(843)] = 31506, + [SMALL_STATE(844)] = 31529, + [SMALL_STATE(845)] = 31552, + [SMALL_STATE(846)] = 31575, + [SMALL_STATE(847)] = 31598, + [SMALL_STATE(848)] = 31621, + [SMALL_STATE(849)] = 31644, + [SMALL_STATE(850)] = 31667, + [SMALL_STATE(851)] = 31690, + [SMALL_STATE(852)] = 31713, + [SMALL_STATE(853)] = 31742, + [SMALL_STATE(854)] = 31765, + [SMALL_STATE(855)] = 31788, + [SMALL_STATE(856)] = 31811, + [SMALL_STATE(857)] = 31834, + [SMALL_STATE(858)] = 31857, + [SMALL_STATE(859)] = 31884, + [SMALL_STATE(860)] = 31909, + [SMALL_STATE(861)] = 31932, + [SMALL_STATE(862)] = 31955, + [SMALL_STATE(863)] = 31978, + [SMALL_STATE(864)] = 32007, + [SMALL_STATE(865)] = 32030, + [SMALL_STATE(866)] = 32053, + [SMALL_STATE(867)] = 32076, + [SMALL_STATE(868)] = 32105, + [SMALL_STATE(869)] = 32128, + [SMALL_STATE(870)] = 32151, + [SMALL_STATE(871)] = 32174, + [SMALL_STATE(872)] = 32203, + [SMALL_STATE(873)] = 32226, + [SMALL_STATE(874)] = 32255, + [SMALL_STATE(875)] = 32278, + [SMALL_STATE(876)] = 32301, + [SMALL_STATE(877)] = 32324, + [SMALL_STATE(878)] = 32347, + [SMALL_STATE(879)] = 32370, + [SMALL_STATE(880)] = 32397, + [SMALL_STATE(881)] = 32426, + [SMALL_STATE(882)] = 32449, + [SMALL_STATE(883)] = 32472, + [SMALL_STATE(884)] = 32495, + [SMALL_STATE(885)] = 32521, + [SMALL_STATE(886)] = 32547, + [SMALL_STATE(887)] = 32573, + [SMALL_STATE(888)] = 32599, + [SMALL_STATE(889)] = 32625, + [SMALL_STATE(890)] = 32651, + [SMALL_STATE(891)] = 32675, + [SMALL_STATE(892)] = 32701, + [SMALL_STATE(893)] = 32727, + [SMALL_STATE(894)] = 32753, + [SMALL_STATE(895)] = 32779, + [SMALL_STATE(896)] = 32805, + [SMALL_STATE(897)] = 32831, + [SMALL_STATE(898)] = 32853, + [SMALL_STATE(899)] = 32875, + [SMALL_STATE(900)] = 32901, + [SMALL_STATE(901)] = 32927, + [SMALL_STATE(902)] = 32953, + [SMALL_STATE(903)] = 32979, + [SMALL_STATE(904)] = 33005, + [SMALL_STATE(905)] = 33031, + [SMALL_STATE(906)] = 33057, + [SMALL_STATE(907)] = 33083, + [SMALL_STATE(908)] = 33109, + [SMALL_STATE(909)] = 33133, + [SMALL_STATE(910)] = 33159, + [SMALL_STATE(911)] = 33185, + [SMALL_STATE(912)] = 33211, + [SMALL_STATE(913)] = 33233, + [SMALL_STATE(914)] = 33257, + [SMALL_STATE(915)] = 33281, + [SMALL_STATE(916)] = 33307, + [SMALL_STATE(917)] = 33333, + [SMALL_STATE(918)] = 33359, + [SMALL_STATE(919)] = 33385, + [SMALL_STATE(920)] = 33411, + [SMALL_STATE(921)] = 33435, + [SMALL_STATE(922)] = 33461, + [SMALL_STATE(923)] = 33487, + [SMALL_STATE(924)] = 33511, + [SMALL_STATE(925)] = 33535, + [SMALL_STATE(926)] = 33561, + [SMALL_STATE(927)] = 33587, + [SMALL_STATE(928)] = 33613, + [SMALL_STATE(929)] = 33639, + [SMALL_STATE(930)] = 33665, + [SMALL_STATE(931)] = 33691, + [SMALL_STATE(932)] = 33717, + [SMALL_STATE(933)] = 33743, + [SMALL_STATE(934)] = 33769, + [SMALL_STATE(935)] = 33793, + [SMALL_STATE(936)] = 33816, + [SMALL_STATE(937)] = 33839, + [SMALL_STATE(938)] = 33862, + [SMALL_STATE(939)] = 33885, + [SMALL_STATE(940)] = 33908, + [SMALL_STATE(941)] = 33931, + [SMALL_STATE(942)] = 33954, + [SMALL_STATE(943)] = 33975, + [SMALL_STATE(944)] = 33996, + [SMALL_STATE(945)] = 34019, + [SMALL_STATE(946)] = 34042, + [SMALL_STATE(947)] = 34065, + [SMALL_STATE(948)] = 34088, + [SMALL_STATE(949)] = 34111, + [SMALL_STATE(950)] = 34134, + [SMALL_STATE(951)] = 34157, + [SMALL_STATE(952)] = 34180, + [SMALL_STATE(953)] = 34203, + [SMALL_STATE(954)] = 34226, + [SMALL_STATE(955)] = 34249, + [SMALL_STATE(956)] = 34272, + [SMALL_STATE(957)] = 34295, + [SMALL_STATE(958)] = 34318, + [SMALL_STATE(959)] = 34341, + [SMALL_STATE(960)] = 34364, + [SMALL_STATE(961)] = 34385, + [SMALL_STATE(962)] = 34408, + [SMALL_STATE(963)] = 34428, + [SMALL_STATE(964)] = 34448, + [SMALL_STATE(965)] = 34468, + [SMALL_STATE(966)] = 34488, + [SMALL_STATE(967)] = 34508, + [SMALL_STATE(968)] = 34528, + [SMALL_STATE(969)] = 34548, + [SMALL_STATE(970)] = 34568, + [SMALL_STATE(971)] = 34588, + [SMALL_STATE(972)] = 34608, + [SMALL_STATE(973)] = 34628, + [SMALL_STATE(974)] = 34648, + [SMALL_STATE(975)] = 34668, + [SMALL_STATE(976)] = 34688, + [SMALL_STATE(977)] = 34708, + [SMALL_STATE(978)] = 34728, + [SMALL_STATE(979)] = 34748, + [SMALL_STATE(980)] = 34768, + [SMALL_STATE(981)] = 34788, + [SMALL_STATE(982)] = 34808, + [SMALL_STATE(983)] = 34828, + [SMALL_STATE(984)] = 34848, + [SMALL_STATE(985)] = 34868, + [SMALL_STATE(986)] = 34888, + [SMALL_STATE(987)] = 34908, + [SMALL_STATE(988)] = 34928, + [SMALL_STATE(989)] = 34948, + [SMALL_STATE(990)] = 34968, + [SMALL_STATE(991)] = 34988, + [SMALL_STATE(992)] = 35008, + [SMALL_STATE(993)] = 35028, + [SMALL_STATE(994)] = 35048, + [SMALL_STATE(995)] = 35068, + [SMALL_STATE(996)] = 35088, + [SMALL_STATE(997)] = 35108, + [SMALL_STATE(998)] = 35128, + [SMALL_STATE(999)] = 35148, + [SMALL_STATE(1000)] = 35168, + [SMALL_STATE(1001)] = 35188, + [SMALL_STATE(1002)] = 35208, + [SMALL_STATE(1003)] = 35228, + [SMALL_STATE(1004)] = 35248, + [SMALL_STATE(1005)] = 35268, + [SMALL_STATE(1006)] = 35288, + [SMALL_STATE(1007)] = 35308, + [SMALL_STATE(1008)] = 35328, + [SMALL_STATE(1009)] = 35348, + [SMALL_STATE(1010)] = 35368, + [SMALL_STATE(1011)] = 35388, + [SMALL_STATE(1012)] = 35408, + [SMALL_STATE(1013)] = 35428, + [SMALL_STATE(1014)] = 35448, + [SMALL_STATE(1015)] = 35468, + [SMALL_STATE(1016)] = 35488, + [SMALL_STATE(1017)] = 35508, + [SMALL_STATE(1018)] = 35528, + [SMALL_STATE(1019)] = 35548, + [SMALL_STATE(1020)] = 35568, + [SMALL_STATE(1021)] = 35588, + [SMALL_STATE(1022)] = 35608, + [SMALL_STATE(1023)] = 35628, + [SMALL_STATE(1024)] = 35648, + [SMALL_STATE(1025)] = 35668, + [SMALL_STATE(1026)] = 35688, + [SMALL_STATE(1027)] = 35708, + [SMALL_STATE(1028)] = 35728, + [SMALL_STATE(1029)] = 35748, + [SMALL_STATE(1030)] = 35768, + [SMALL_STATE(1031)] = 35788, + [SMALL_STATE(1032)] = 35808, + [SMALL_STATE(1033)] = 35828, + [SMALL_STATE(1034)] = 35848, + [SMALL_STATE(1035)] = 35868, + [SMALL_STATE(1036)] = 35872, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [11] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(972), - [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(106), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(969), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(694), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(696), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(698), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(994), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(986), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(129), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(978), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(705), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(706), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(122), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(999), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(991), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 2, 0, 0), SHIFT_REPEAT(129), [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variableExpr, 1, 0, 0), [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variableExpr, 1, 0, 0), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedIdentifier, 1, 0, 0), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), - [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(999), - [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesizedType, 3, 0, 0), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesizedType, 3, 0, 0), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), - [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(999), - [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), - [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(999), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaredType, 1, 0, 0), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaredType, 1, 0, 0), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaredType, 1, 0, 0), SHIFT(559), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeArgumentList, 4, 0, 0), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeArgumentList, 4, 0, 0), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullableType, 2, 0, 0), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullableType, 2, 0, 0), - [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringConstant, 2, 0, 0), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringConstant, 2, 0, 0), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrainedType, 4, 0, 0), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrainedType, 4, 0, 0), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeArgumentList, 3, 0, 0), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeArgumentList, 3, 0, 0), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 1), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 1), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringLiteralType, 1, 0, 0), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringLiteralType, 1, 0, 0), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unionType, 3, 0, 0), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unionType, 3, 0, 0), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaredType, 2, 0, 0), - [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaredType, 2, 0, 0), - [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 4, 0, 0), - [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 4, 0, 0), - [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 6, 0, 0), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 6, 0, 0), - [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringConstant, 3, 0, 0), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringConstant, 3, 0, 0), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unionDefaultType, 2, 0, 0), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unionDefaultType, 2, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 5, 0, 0), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 5, 0, 0), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_propertyCallExpr, 3, 0, 3), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_propertyCallExpr, 3, 0, 3), - [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrainedType, 5, 0, 0), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrainedType, 5, 0, 0), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesizedType, 3, 0, 0), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesizedType, 3, 0, 0), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), + [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(1004), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(1004), + [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaredType, 1, 0, 0), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaredType, 1, 0, 0), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaredType, 1, 0, 0), SHIFT(575), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringConstant, 3, 0, 0), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringConstant, 3, 0, 0), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrainedType, 5, 0, 0), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrainedType, 5, 0, 0), + [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaredType, 2, 0, 0), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaredType, 2, 0, 0), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_propertyCallExpr, 3, 0, 3), + [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_propertyCallExpr, 3, 0, 3), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullableType, 2, 0, 0), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullableType, 2, 0, 0), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unionDefaultType, 2, 0, 0), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unionDefaultType, 2, 0, 0), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unionType, 3, 0, 0), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unionType, 3, 0, 0), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringLiteralType, 1, 0, 0), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringLiteralType, 1, 0, 0), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 4, 0, 0), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 4, 0, 0), + [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrainedType, 4, 0, 0), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrainedType, 4, 0, 0), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeArgumentList, 3, 0, 0), + [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeArgumentList, 3, 0, 0), + [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 1), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 1), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stringConstant, 2, 0, 0), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stringConstant, 2, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeArgumentList, 4, 0, 0), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeArgumentList, 4, 0, 0), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 6, 0, 0), + [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 6, 0, 0), + [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteralType, 5, 0, 0), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteralType, 5, 0, 0), [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 0), [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 0), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodCallExpr, 2, 0, 0), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodCallExpr, 2, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscriptExpr, 4, 0, 3), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscriptExpr, 4, 0, 3), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 3, 0, 0), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 3, 0, 0), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slStringLiteral, 2, 0, 0), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteral, 2, 0, 0), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unaryExpr, 2, 0, 0), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unaryExpr, 2, 0, 0), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_newExpr, 2, 0, 0), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newExpr, 2, 0, 0), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr2, 1, 0, 0), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr2, 1, 0, 0), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 3, 0, 0), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 3, 0, 0), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectLiteral, 2, 0, 0), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectLiteral, 2, 0, 0), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleExpr, 1, 0, 0), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleExpr, 1, 0, 0), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 4, 0, 0), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 4, 0, 0), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodCallExpr, 4, 0, 3), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodCallExpr, 4, 0, 3), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importGlobExpr, 4, 0, 0), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importGlobExpr, 4, 0, 0), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importExpr, 4, 0, 0), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importExpr, 4, 0, 0), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlStringLiteral, 2, 0, 0), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteral, 2, 0, 0), - [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 2, 0, 0), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 2, 0, 0), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variableObjectLiteral, 2, 0, 0), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variableObjectLiteral, 2, 0, 0), - [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 2, 0, 0), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 2, 0, 0), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesizedExpr, 3, 0, 0), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesizedExpr, 3, 0, 0), - [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slStringLiteral, 3, 0, 0), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteral, 3, 0, 0), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 4, 0, 0), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 4, 0, 0), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlStringLiteral, 3, 0, 0), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteral, 3, 0, 0), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_newExpr, 3, 0, 0), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newExpr, 3, 0, 0), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_propertyCallExpr, 3, 0, 2), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_propertyCallExpr, 3, 0, 2), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importExpr, 4, 0, 0), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importExpr, 4, 0, 0), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 3, 0, 0), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 3, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importGlobExpr, 4, 0, 0), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importGlobExpr, 4, 0, 0), + [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 4, 0, 0), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 4, 0, 0), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 3, 0, 0), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 3, 0, 0), + [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 4, 0, 0), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 4, 0, 0), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_propertyCallExpr, 3, 0, 2), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_propertyCallExpr, 3, 0, 2), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectLiteral, 2, 0, 0), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectLiteral, 2, 0, 0), + [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unaryExpr, 2, 0, 0), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unaryExpr, 2, 0, 0), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodCallExpr, 2, 0, 0), + [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodCallExpr, 2, 0, 0), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_newExpr, 3, 0, 0), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newExpr, 3, 0, 0), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlStringLiteral, 3, 0, 0), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteral, 3, 0, 0), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variableObjectLiteral, 2, 0, 0), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variableObjectLiteral, 2, 0, 0), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr2, 1, 0, 0), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr2, 1, 0, 0), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slStringLiteral, 3, 0, 0), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteral, 3, 0, 0), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesizedExpr, 3, 0, 0), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesizedExpr, 3, 0, 0), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscriptExpr, 4, 0, 3), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscriptExpr, 4, 0, 3), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slStringLiteral, 2, 0, 0), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteral, 2, 0, 0), + [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBody, 2, 0, 0), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBody, 2, 0, 0), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_newExpr, 2, 0, 0), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newExpr, 2, 0, 0), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleExpr, 1, 0, 0), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleExpr, 1, 0, 0), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodCallExpr, 4, 0, 3), + [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodCallExpr, 4, 0, 3), + [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argumentList, 2, 0, 0), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argumentList, 2, 0, 0), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mlStringLiteral, 2, 0, 0), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteral, 2, 0, 0), [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asExpr, 3, 0, 0), [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asExpr, 3, 0, 0), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_isExpr, 3, 0, 0), [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_isExpr, 3, 0, 0), [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectElement, 1, 0, 0), [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectElement, 1, 0, 0), [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_objectElement, 1, 0, 0), REDUCE(sym__expr, 1, 0, 0), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readOrNullExpr, 2, 0, 0), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readOrNullExpr, 2, 0, 0), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_traceExpr, 2, 0, 0), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_traceExpr, 2, 0, 0), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binaryExprRightAssoc, 3, 0, 0), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binaryExprRightAssoc, 3, 0, 0), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteral, 3, 0, 0), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteral, 3, 0, 0), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binaryExpr, 3, 0, 0), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binaryExpr, 3, 0, 0), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classProperty_repeat1, 1, 0, 0), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 1, 0, 0), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_letExpr, 7, 0, 0), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_letExpr, 7, 0, 0), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ifExpr, 7, 0, 0), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ifExpr, 7, 0, 0), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throwExpr, 2, 0, 0), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throwExpr, 2, 0, 0), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readGlobExpr, 2, 0, 0), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readGlobExpr, 2, 0, 0), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_traceExpr, 2, 0, 0), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_traceExpr, 2, 0, 0), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readExpr, 2, 0, 0), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readExpr, 2, 0, 0), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectEntry, 5, 0, 6), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectEntry, 5, 0, 6), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 5, 0, 0), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 5, 0, 0), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectMethod, 3, 0, 0), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectMethod, 3, 0, 0), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectPredicate, 5, 0, 7), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectPredicate, 5, 0, 7), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 3, 0, 0), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 3, 0, 0), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binaryExpr, 3, 0, 0), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binaryExpr, 3, 0, 0), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ifExpr, 7, 0, 0), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ifExpr, 7, 0, 0), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionLiteral, 3, 0, 0), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionLiteral, 3, 0, 0), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_letExpr, 7, 0, 0), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_letExpr, 7, 0, 0), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classProperty_repeat1, 1, 0, 0), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 1, 0, 0), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readGlobExpr, 2, 0, 0), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readGlobExpr, 2, 0, 0), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binaryExprRightAssoc, 3, 0, 0), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binaryExprRightAssoc, 3, 0, 0), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readOrNullExpr, 2, 0, 0), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readOrNullExpr, 2, 0, 0), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readExpr, 2, 0, 0), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readExpr, 2, 0, 0), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throwExpr, 2, 0, 0), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throwExpr, 2, 0, 0), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectSpread, 2, 0, 0), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectSpread, 2, 0, 0), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectMethod, 3, 0, 0), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectMethod, 3, 0, 0), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectEntry, 5, 0, 6), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectEntry, 5, 0, 6), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 3, 0, 0), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 3, 0, 0), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectPredicate, 5, 0, 7), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectPredicate, 5, 0, 7), [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 4, 0, 0), [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 4, 0, 0), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectSpread, 2, 0, 0), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectSpread, 2, 0, 0), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 2, 0, 0), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 2, 0, 0), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectPredicate, 4, 0, 5), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectPredicate, 4, 0, 5), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 5, 0, 0), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 5, 0, 0), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectEntry, 4, 0, 4), [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectEntry, 4, 0, 4), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_whenGenerator, 5, 0, 8), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whenGenerator, 5, 0, 8), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 1, 0, 0), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 1, 0, 0), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forGenerator, 9, 0, 0), - [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forGenerator, 9, 0, 0), - [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBodyParameters, 2, 0, 0), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBodyParameters, 2, 0, 0), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBodyParameters, 3, 0, 0), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBodyParameters, 3, 0, 0), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__objectMember, 1, 0, 0), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__objectMember, 1, 0, 0), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forGenerator, 7, 0, 0), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forGenerator, 7, 0, 0), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_whenGenerator, 7, 0, 9), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whenGenerator, 7, 0, 9), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(974), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(974), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaredType, 1, 0, 0), SHIFT(557), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(974), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 6, 0, 0), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 6, 0, 0), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 3, 0, 0), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 3, 0, 0), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 4, 0, 0), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 4, 0, 0), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 4, 0, 0), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 4, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 7, 0, 0), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 7, 0, 0), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 5, 0, 0), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 5, 0, 0), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 3, 0, 0), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 3, 0, 0), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 5, 0, 0), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 5, 0, 0), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variableExpr, 1, 0, 0), REDUCE(sym_typedIdentifier, 1, 0, 0), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(989), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(961), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(961), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaredType, 1, 0, 0), SHIFT(552), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(784), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(1014), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(1012), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(1011), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(942), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(677), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(628), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(980), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constrainedType_repeat1, 2, 0, 0), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 2, 0, 0), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 2, 0, 0), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 3, 0, 0), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 3, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 5, 0, 0), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 5, 0, 0), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAnnotation, 2, 0, 0), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAnnotation, 2, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 4, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 4, 0, 0), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 3, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 3, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebangComment, 2, 0, 0), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebangComment, 2, 0, 0), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 1, 0, 0), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 1, 0, 0), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 2, 0, 0), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 2, 0, 0), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 2, 0, 0), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 2, 0, 0), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(883), - [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 4, 0, 0), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 4, 0, 0), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 3, 0, 0), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 3, 0, 0), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 4, 0, 0), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 4, 0, 0), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameterList, 3, 0, 0), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeParameterList, 3, 0, 0), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameterList, 4, 0, 0), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeParameterList, 4, 0, 0), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 5, 0, 0), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 5, 0, 0), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleClause, 2, 0, 0), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleClause, 2, 0, 0), - [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 2, 0, 0), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 2, 0, 0), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 3, 0, 0), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 3, 0, 0), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 6, 0, 0), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 6, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleClause, 3, 0, 0), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleClause, 3, 0, 0), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 7, 0, 0), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 7, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importClause, 2, 0, 0), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importClause, 2, 0, 0), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 5, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 5, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importGlobClause, 2, 0, 0), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importGlobClause, 2, 0, 0), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 2, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classExtendsClause, 2, 0, 0), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classExtendsClause, 2, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_docComment, 2, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_docComment, 2, 0, 0), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 4, 0, 0), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 4, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 6, 0, 0), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 6, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleHeader_repeat1, 2, 0, 0), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_moduleHeader_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 8, 0, 0), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 8, 0, 0), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_docComment, 1, 0, 0), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_docComment, 1, 0, 0), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), SHIFT_REPEAT(651), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 6, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 6, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extendsOrAmendsClause, 2, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extendsOrAmendsClause, 2, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 1, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 1, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 4, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 4, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importGlobClause, 4, 0, 0), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importGlobClause, 4, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 7, 0, 0), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 7, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 2, 0, 0), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 2, 0, 0), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importClause, 4, 0, 0), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importClause, 4, 0, 0), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_docComment_repeat1, 1, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 1, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classExtendsClause, 3, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classExtendsClause, 3, 0, 0), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleHeader_repeat1, 1, 0, 0), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_moduleHeader_repeat1, 1, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__moduleMember, 1, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__moduleMember, 1, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 8, 0, 0), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 8, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classBody, 2, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classBody, 2, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 2, 0, 0), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classBody, 3, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classBody, 3, 0, 0), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectProperty, 2, 0, 0), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectProperty, 2, 0, 0), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectPredicate, 4, 0, 5), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectPredicate, 4, 0, 5), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_whenGenerator, 5, 0, 8), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whenGenerator, 5, 0, 8), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forGenerator, 7, 0, 0), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forGenerator, 7, 0, 0), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectEntry, 5, 0, 4), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectEntry, 5, 0, 4), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__objectMember, 1, 0, 0), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__objectMember, 1, 0, 0), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBodyParameters, 3, 0, 0), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBodyParameters, 3, 0, 0), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_whenGenerator, 7, 0, 9), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whenGenerator, 7, 0, 9), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectBodyParameters, 2, 0, 0), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectBodyParameters, 2, 0, 0), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forGenerator, 9, 0, 0), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forGenerator, 9, 0, 0), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_objectPredicate, 5, 0, 5), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_objectPredicate, 5, 0, 5), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_objectBody_repeat1, 1, 0, 0), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBody_repeat1, 1, 0, 0), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(979), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaredType, 1, 0, 0), SHIFT(581), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(979), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 7, 0, 0), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 7, 0, 0), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 5, 0, 0), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 5, 0, 0), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 6, 0, 0), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 6, 0, 0), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 4, 0, 0), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 4, 0, 0), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 3, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 3, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 5, 0, 0), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 5, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 4, 0, 0), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 4, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 3, 0, 0), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 3, 0, 0), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variableExpr, 1, 0, 0), REDUCE(sym_typedIdentifier, 1, 0, 0), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 0), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 1, 0, 0), SHIFT(966), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(966), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualifiedIdentifier, 2, 0, 0), SHIFT(966), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaredType, 1, 0, 0), SHIFT(590), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifiedIdentifier_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(789), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(1019), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(1017), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(1016), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(947), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(680), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(628), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constrainedType_repeat1, 2, 0, 0), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(947), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 2, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 2, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAnnotation, 2, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAnnotation, 2, 0, 0), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 4, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 4, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 3, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 3, 0, 0), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 5, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 5, 0, 0), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 1, 0, 0), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 1, 0, 0), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebangComment, 2, 0, 0), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebangComment, 2, 0, 0), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 3, 0, 0), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 3, 0, 0), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classProperty, 2, 0, 0), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classProperty, 2, 0, 0), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 2, 0, 0), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 2, 0, 0), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 3, 0, 0), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 3, 0, 0), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameterList, 3, 0, 0), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeParameterList, 3, 0, 0), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 6, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 6, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 3, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 3, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_classProperty_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleClause, 2, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleClause, 2, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleClause, 3, 0, 0), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleClause, 3, 0, 0), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 2, 0, 0), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 2, 0, 0), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 4, 0, 0), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 4, 0, 0), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterList, 4, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterList, 4, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameterList, 4, 0, 0), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeParameterList, 4, 0, 0), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 5, 0, 0), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 5, 0, 0), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 4, 0, 0), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 4, 0, 0), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importClause, 2, 0, 0), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importClause, 2, 0, 0), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 5, 0, 0), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 5, 0, 0), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_docComment, 2, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_docComment, 2, 0, 0), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 6, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 6, 0, 0), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 7, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 7, 0, 0), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_docComment, 1, 0, 0), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_docComment, 1, 0, 0), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeAlias, 8, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeAlias, 8, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 2, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleHeader_repeat1, 2, 0, 0), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_moduleHeader_repeat1, 2, 0, 0), SHIFT_REPEAT(947), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classExtendsClause, 2, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classExtendsClause, 2, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importGlobClause, 2, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importGlobClause, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extendsOrAmendsClause, 2, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extendsOrAmendsClause, 2, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importGlobClause, 4, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importGlobClause, 4, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importClause, 4, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_importClause, 4, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_docComment_repeat1, 1, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_docComment_repeat1, 1, 0, 0), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_methodHeader, 6, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_methodHeader, 6, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 2, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 2, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classMethod, 1, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classMethod, 1, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_moduleHeader, 4, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_moduleHeader, 4, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 7, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 7, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classExtendsClause, 3, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classExtendsClause, 3, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleHeader_repeat1, 1, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_moduleHeader_repeat1, 1, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__moduleMember, 1, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__moduleMember, 1, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 2, 0, 0), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 2, 0, 0), SHIFT_REPEAT(680), [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 1, 0, 0), [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat2, 1, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 1, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 1, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 1, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat7, 2, 0, 0), - [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(838), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(163), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(863), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat6, 2, 0, 0), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(843), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(167), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(846), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat5, 2, 0, 0), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(835), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(168), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(837), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat4, 2, 0, 0), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(841), - [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(169), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(842), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat3, 2, 0, 0), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(844), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(174), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(845), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat2, 2, 0, 0), - [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(833), - [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(178), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(834), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat1, 2, 0, 0), - [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(836), - [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat7, 2, 0, 0), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(827), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(235), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(860), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat6, 2, 0, 0), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(878), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(231), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(828), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat5, 2, 0, 0), - [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(867), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(227), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(873), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat4, 2, 0, 0), - [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(877), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(223), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(869), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat3, 2, 0, 0), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(870), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(219), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(848), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat2, 2, 0, 0), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(872), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(215), - [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(852), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat1, 2, 0, 0), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_functionLiteralType_repeat1, 2, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedIdentifier, 2, 0, 0), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), SHIFT_REPEAT(893), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), SHIFT_REPEAT(852), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat7, 1, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart5, 1, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr5, 3, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr4, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr3, 3, 0, 0), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat2, 1, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart1, 1, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat5, 1, 0, 0), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat1, 1, 0, 0), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart4, 1, 0, 0), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat7, 1, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart, 1, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr2, 3, 0, 0), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat4, 1, 0, 0), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart3, 1, 0, 0), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat6, 1, 0, 0), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat3, 1, 0, 0), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart2, 1, 0, 0), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart5, 1, 0, 0), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart2, 1, 0, 0), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr1, 3, 0, 0), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart, 1, 0, 0), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr, 3, 0, 0), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart1, 1, 0, 0), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_functionLiteralType_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr6, 3, 0, 0), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart6, 1, 0, 0), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart6, 1, 0, 0), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat5, 1, 0, 0), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart3, 1, 0, 0), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat3, 1, 0, 0), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat1, 1, 0, 0), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat2, 1, 0, 0), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart4, 1, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat4, 1, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat6, 1, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBodyParameters_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBodyParameters_repeat1, 2, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 1, 0, 0), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 1, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBodyParameters_repeat1, 2, 0, 0), SHIFT_REPEAT(949), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constrainedType_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_typeParameterList_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_typeParameterList_repeat1, 2, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameter, 1, 0, 0), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameter, 2, 0, 0), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2157] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lineComment, 1, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clazz, 8, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clazz, 8, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classBody, 3, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classBody, 3, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classBody, 2, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_classBody, 2, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_moduleClause_repeat1, 1, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_classBody_repeat1, 1, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_classBody_repeat1, 1, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat7, 2, 0, 0), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(843), + [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(163), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(868), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat6, 2, 0, 0), + [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(848), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(167), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(851), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat5, 2, 0, 0), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(840), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(168), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(842), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat4, 2, 0, 0), + [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(846), + [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(169), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(847), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat3, 2, 0, 0), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(849), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(174), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(850), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat2, 2, 0, 0), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(838), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(178), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(839), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat1, 2, 0, 0), + [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat7, 2, 0, 0), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(832), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(235), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat7, 2, 0, 0), SHIFT_REPEAT(865), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat6, 2, 0, 0), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(883), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(231), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat6, 2, 0, 0), SHIFT_REPEAT(833), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat5, 2, 0, 0), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(872), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(227), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat5, 2, 0, 0), SHIFT_REPEAT(878), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat4, 2, 0, 0), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(882), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(223), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat4, 2, 0, 0), SHIFT_REPEAT(874), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat3, 2, 0, 0), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(875), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(219), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat3, 2, 0, 0), SHIFT_REPEAT(853), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat2, 2, 0, 0), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(877), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(215), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat2, 2, 0, 0), SHIFT_REPEAT(857), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat1, 2, 0, 0), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_functionLiteralType_repeat1, 2, 0, 0), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedIdentifier, 2, 0, 0), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), SHIFT_REPEAT(898), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 2, 0, 0), SHIFT_REPEAT(857), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), SHIFT_REPEAT(897), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat7, 1, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart5, 1, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr5, 3, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr4, 3, 0, 0), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr3, 3, 0, 0), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat2, 1, 0, 0), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart1, 1, 0, 0), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat5, 1, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat1, 1, 0, 0), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart4, 1, 0, 0), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat7, 1, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart, 1, 0, 0), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr2, 3, 0, 0), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat4, 1, 0, 0), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart3, 1, 0, 0), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat6, 1, 0, 0), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mlStringLiteral_repeat3, 1, 0, 0), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart2, 1, 0, 0), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart5, 1, 0, 0), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart2, 1, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr1, 3, 0, 0), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart, 1, 0, 0), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr, 3, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart1, 1, 0, 0), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_functionLiteralType_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolationExpr6, 3, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart6, 1, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mlStringLiteralPart6, 1, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat5, 1, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart3, 1, 0, 0), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat3, 1, 0, 0), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat1, 1, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat2, 1, 0, 0), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slStringLiteralPart4, 1, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat4, 1, 0, 0), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slStringLiteral_repeat6, 1, 0, 0), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBodyParameters_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_objectBodyParameters_repeat1, 2, 0, 0), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat1, 1, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stringConstant_repeat2, 1, 0, 0), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_objectBodyParameters_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constrainedType_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_typeParameterList_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_typeParameterList_repeat1, 2, 0, 0), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameter, 1, 0, 0), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeParameter, 2, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2175] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lineComment, 1, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599..17f0e94 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -47,7 +47,6 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); - void (*log)(const TSLexer *, const char *, ...); }; typedef enum { diff --git a/test/corpus/basic/deletion.txt b/test/corpus/basic/deletion.txt new file mode 100644 index 0000000..7ec438e --- /dev/null +++ b/test/corpus/basic/deletion.txt @@ -0,0 +1,71 @@ +======== +deletion +======== + +validPositions { + ["entry"] = delete + [0] = delete + fooBar = delete + [[true]] = delete +} + +invalidPositions { + // TODO: Make these ERRORs (may require custom scanner to exclude keywords from identifiers) + inExpression { + bar = if (false) 0 else delete + } + asElement { + delete + } + asPrefix { + delete 0 + } +} + +-------- + + (module + (classProperty + (identifier) + (objectBody + (objectEntry + (slStringLiteral + (slStringLiteralPart)) + (delete)) + (objectEntry + (intLiteral) + (delete)) + (objectProperty + (identifier) + (delete)) + (objectPredicate + (trueLiteral) + (delete)))) + (classProperty + (identifier) + (objectBody + (lineComment) + (objectProperty + (identifier) + (objectBody + (objectProperty + (identifier) + (ifExpr + (falseLiteral) + (intLiteral) + (variableExpr + (identifier)))))) + (objectProperty + (identifier) + (objectBody + (objectElement + (variableExpr + (identifier))))) + (objectProperty + (identifier) + (objectBody + (objectElement + (variableExpr + (identifier))) + (objectElement + (intLiteral))))))) \ No newline at end of file